Home | History | Annotate | Download | only in x509

Lines Matching defs:serial

55     private SerialNumber        serial;
60 * @param serial the serial number for the certificate.
63 this.serial = new SerialNumber(num);
69 * @param serial the serial number for the certificate.
72 this.serial = new SerialNumber(num);
78 * @param in the DerInputStream to read the serial number from.
82 serial = new SerialNumber(in);
88 * @param in the InputStream to read the serial number from.
92 serial = new SerialNumber(in);
102 serial = new SerialNumber(val);
106 * Return the serial number as user readable string.
109 if (serial == null) return "";
110 return (serial.toString());
114 * Encode the serial number in DER form to the stream.
121 serial.encode(tmp);
134 serial = (SerialNumber)obj;
146 return (serial);
158 serial = null;