Searched refs:certificates (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/
H A DIdentity.java42 * <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/test/sun/security/ssl/sanity/interop/
H A DJSSEClient.java73 Certificate[] certificates = session.getLocalCertificates();
75 if (certificates != null) {
76 throw new Exception("Local certificates should be null");
79 if ((certificates == null) || (certificates.length == 0)) {
82 String keyAlg = certificates[0].getPublicKey().getAlgorithm();
/openjdk7/jdk/test/sun/security/pkcs11/fips/
H A DJSSEClient.java72 Certificate[] certificates = session.getLocalCertificates();
74 if (certificates != null) {
75 throw new Exception("Local certificates should be null");
78 if ((certificates == null) || (certificates.length == 0)) {
81 String keyAlg = certificates[0].getPublicKey().getAlgorithm();
/openjdk7/jdk/test/sun/security/pkcs11/sslecc/
H A DJSSEClient.java72 Certificate[] certificates = session.getLocalCertificates();
74 if (certificates != null) {
75 throw new Exception("Local certificates should be null");
78 if ((certificates == null) || (certificates.length == 0)) {
81 String keyAlg = certificates[0].getPublicKey().getAlgorithm();
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS7.java63 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/test/java/util/jar/JarInputStream/
H A DScanSignedJar.java37 * when JarEntry.getCertificates is used to extract the signer's certificates.
67 Certificate[] certificates = entry.getCertificates();
70 if (signers == null && certificates == null) {
76 } else if (signers != null && certificates != null) {
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSunX509KeyManagerImpl.java51 * 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...]
/openjdk7/jdk/test/javax/crypto/JceSecurity/
H A DMyCertificateFactory.java72 engineGenerateCertPath(List<? extends Certificate> certificates) argument
74 return cf.generateCertPath(certificates);
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertificateFactorySpi.java47 * <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 DCertificateFactory.java47 * <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/src/share/classes/sun/security/provider/
H A DX509Factory.java42 * 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/test/java/security/cert/CertPathBuilder/selfIssued/
H A DREADME26 The certificates and CRLs used by KeyUsageMatters.java are copied from
29 Here lists the local generated certificates and CRLs used in the test cases.
/openjdk7/jdk/make/
H A DMakefile98 CACERTS_FILE.desc = Location of certificates file
/openjdk7/
H A DMakefile391 CACERTS_FILE.desc = Location of certificates file

Completed in 80 milliseconds