Searched defs:certificate (Results 1 - 4 of 4) sorted by relevance
/openjdk7/jdk/src/share/classes/java/security/cert/ |
H A D | X509CRL.java | 50 * <p>Each revoked certificate is 51 * identified in a CRL by its certificate serial number. When a 52 * certificate-using system uses a certificate (e.g., for verifying a 54 * certificate signature and validity but also acquires a suitably- 55 * recent CRL and checks that the certificate serial number is not on 60 * entry may be removed when the certificate expiration date is reached. 94 * CRLs are instantiated using a certificate factory. The following is an 179 * @return the encoded form of this certificate 320 * Gets the CRL entry, if any, with the given certificate serialNumbe 348 getRevokedCertificate(X509Certificate certificate) argument [all...] |
/openjdk7/jdk/src/share/classes/java/security/ |
H A D | Identity.java | 224 * Adds a certificate for this identity. If the identity has a public 225 * key, the public key in the certificate must be the same, and if 227 * public key is set to be that specified in the certificate. 231 * as its argument to see if it's ok to add a certificate. 233 * @param certificate the certificate to be added. 235 * @exception KeyManagementException if the certificate is not valid, 236 * if the public key in the certificate being added conflicts with 241 * adding a certificate. 245 public void addCertificate(Certificate certificate) argument 295 removeCertificate(Certificate certificate) argument [all...] |
H A D | Signature.java | 457 * the given certificate. 458 * <p>If the certificate is of type X.509 and has a <i>key usage</i> 461 * the certificate and its corresponding private key are not 465 * @param certificate the certificate of the identity whose signature is 468 * @exception InvalidKeyException if the public key in the certificate 473 public final void initVerify(Certificate certificate) argument 475 // If the certificate is of type X509Certificate, 478 if (certificate instanceof java.security.cert.X509Certificate) { 482 X509Certificate cert = (X509Certificate)certificate; [all...] |
/openjdk7/jdk/src/share/classes/javax/crypto/ |
H A D | Cipher.java | 219 // The OID for the KeyUsage extension in an X.509 v3 certificate 1487 * Initializes this cipher with the public key from the given certificate. 1492 * <p>If the certificate is of type X.509 and has a <i>key usage</i> 1495 * the certificate and its corresponding private key are not 1502 * derived from the public key in the given certificate, the underlying 1536 * @param certificate the certificate 1539 * certificate is inappropriate for initializing this cipher, or this 1541 * public key in the given certificate, or the keysize of the public key 1542 * in the given certificate ha 1546 init(int opmode, Certificate certificate) argument 1613 init(int opmode, Certificate certificate, SecureRandom random) argument [all...] |
Completed in 65 milliseconds