Searched defs:certificates (Results 1 - 7 of 7) sorted by relevance
/openjdk7/jdk/src/share/classes/java/security/cert/ |
H A D | CertificateFactorySpi.java | 47 * <p>A certificate factory for X.509 must return certificates that are an 76 * factory implements X.509 certificates, the returned certificate object 79 * <p>In the case of a certificate factory for X.509 certificates, the 159 * The certificates supplied must be of a type supported by the 168 * @param certificates a <code>List</code> of <code>Certificate</code>s 170 * certificates 176 engineGenerateCertPath(List<? extends Certificate> certificates) argument 209 * Returns a (possibly empty) collection view of the certificates read 216 * factory implements X.509 certificates, the elements in the returned 219 * <p>In the case of a certificate factory for X.509 certificates, [all...] |
H A D | CertificateFactory.java | 47 * <p>For encodings consisting of multiple certificates, use 49 * parse a collection of possibly unrelated certificates. Otherwise, 54 * <p>A certificate factory for X.509 must return certificates that are an 58 * <p>The following example reads a file with Base64 encoded certificates, 81 * in a file and extracts all the certificates from it:<p> 308 * factory implements X.509 certificates, the returned certificate object 311 * <p>In the case of a certificate factory for X.509 certificates, the 408 * The certificates supplied must be of a type supported by the 412 * @param certificates a <code>List</code> of <code>Certificate</code>s 414 * certificates 419 generateCertPath(List<? extends Certificate> certificates) argument [all...] |
/openjdk7/jdk/test/javax/crypto/JceSecurity/ |
H A D | MyCertificateFactory.java | 72 engineGenerateCertPath(List<? extends Certificate> certificates) argument 74 return cf.generateCertPath(certificates);
|
/openjdk7/jdk/src/share/classes/java/security/ |
H A D | Identity.java | 42 * <p>An Identity also has a set of certificates (all certifying its own 43 * public key). The Principal names specified in these certificates need 94 * The certificates for this identity. 98 Vector<Certificate> certificates; field in class:Identity 165 * identity's certificates are removed by this operation. 188 certificates = new Vector<Certificate>(); 250 if (certificates == null) { 251 certificates = new Vector<Certificate>(); 261 certificates.addElement(certificate); 298 if (certificates ! 308 public Certificate[] certificates() { method in class:Identity [all...] |
/openjdk7/jdk/src/share/classes/sun/security/pkcs/ |
H A D | PKCS7.java | 63 private X509Certificate[] certificates = null; field in class:PKCS7 175 * @param certificates an array of X.509 certificates. 181 X509Certificate[] certificates, 188 this.certificates = certificates; 195 X509Certificate[] certificates, 197 this(digestAlgorithmIds, contentInfo, certificates, null, signerInfos); 204 certificates = new X509Certificate[contents.length]; 217 certificates[ 179 PKCS7(AlgorithmId[] digestAlgorithmIds, ContentInfo contentInfo, X509Certificate[] certificates, X509CRL[] crls, SignerInfo[] signerInfos) argument 193 PKCS7(AlgorithmId[] digestAlgorithmIds, ContentInfo contentInfo, X509Certificate[] certificates, SignerInfo[] signerInfos) argument [all...] |
/openjdk7/jdk/src/share/classes/sun/security/provider/ |
H A D | X509Factory.java | 42 * This class defines a certificate factory for X.509 v3 certificates & 136 * Note that all certificates created via generateCertificate(InputStream) 138 * It is useful for certificates that cannot be created via 284 * The certificates supplied must be of a type supported by the 288 * @param certificates a <code>List</code> of <code>Certificate</code>s 290 * certificates 295 engineGenerateCertPath(List<? extends Certificate> certificates) argument 298 return(new X509CertPath(certificates)); 318 * Returns a (possibly empty) collection view of X.509 certificates read 321 * @param is the input stream with the certificates [all...] |
/openjdk7/jdk/src/share/classes/sun/security/ssl/ |
H A D | SunX509KeyManagerImpl.java | 51 * chooseClientAlias() and chooseServerAlias() to find the certificates to 57 * certificates. In particular, it is *not* guaranteed that: 58 * . the certificates are within their validity period and not revoked 94 X509Certificate[] certificates; field in class:SunX509KeyManagerImpl.X509Credentials 97 X509Credentials(PrivateKey privateKey, X509Certificate[] certificates) { argument 98 // assert privateKey and certificates != null 100 this.certificates = certificates; 107 for (int i = 0; i < certificates.length; i++) { 109 certificates[ [all...] |
Completed in 59 milliseconds