Home | History | Annotate | Download | only in x509

Lines Matching defs:serial

697      * Gets the CRL entry with the given serial number from this CRL.
699 * @return the entry with the given serial number, or <code>null</code> if
1269 * Immutable X.509 Certificate Issuer DN and serial number pair
1274 final BigInteger serial;
1281 * @param serial the serial number
1283 X509IssuerSerial(X500Principal issuer, BigInteger serial) {
1285 this.serial = serial;
1305 * Returns the serial number.
1307 * @return the serial number
1310 return serial;
1330 if (serial.equals(other.getSerial()) &&
1346 result = 37*result + serial.hashCode();
1357 return this.serial.compareTo(another.serial);