Home | History | Annotate | Download | only in certpath

Lines Matching refs:CertId

41  * This class corresponds to the CertId field in OCSP Request
42 * and the OCSP Response. The ASN.1 definition for CertID is defined
46 * CertID ::= SEQUENCE {
58 public class CertId {
67 private int myhash = -1; // hashcode for this CertId
70 * Creates a CertId. The hash algorithm used is SHA-1.
72 public CertId(X509Certificate issuerCert, SerialNumber serialNumber)
79 public CertId(X500Principal issuerName, PublicKey issuerKey,
87 throw new IOException("Unable to create CertId", nsae);
116 * Creates a CertId from its ASN.1 DER encoding.
118 public CertId(DerInputStream derIn) throws IOException {
154 * Encode the CertId using ASN.1 DER.
168 System.out.println("Encoded certId is " +
174 * Returns a hashcode value for this CertId.
193 * Compares this CertId for equality with the specified
194 * object. Two CertId objects are considered equal if their hash algorithms,
205 if (other == null || (!(other instanceof CertId))) {
209 CertId that = (CertId) other;
221 * Create a string representation of the CertId.
225 sb.append("CertId \n");