| /openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/X509TrustManagerImpl/ |
| H A D | CheckNullEntity.java | 76 certChain[0] = (X509Certificate)ks.getCertificate(alias); 99 X509Certificate[] certChain = {null, null}; field in class:CheckNullEntity 115 trustManager.checkClientTrusted(certChain, (String)null); 122 trustManager.checkServerTrusted(certChain, (String)null); 129 trustManager.checkClientTrusted(certChain, ""); 136 trustManager.checkServerTrusted(certChain, ""); 159 certChain, (String)null, "localhost", null); 167 certChain, (String)null, "localhost", null); 175 certChain, "", "localhost", null); 183 certChain, "", "localhos [all...] |
| /openjdk7/jdk/src/windows/classes/sun/security/mscapi/ |
| H A D | KeyStore.java | 77 private X509Certificate certChain[]; field in class:KeyStore.KeyEntry 86 this.certChain = chain; 156 return certChain; 177 certChain = chain; 288 X509Certificate[] certChain = entry.getCertificateChain(); 290 return certChain.clone(); 321 X509Certificate[] certChain = entry.getCertificateChain(); 322 return certChain[0]; 536 X509Certificate[] certChain = entry.getCertificateChain(); 537 if (certChain ! [all...] |
| /openjdk7/jdk/src/macosx/native/apple/security/ |
| H A D | KeystoreImpl.m | 123 CFArrayRef certChain = NULL; // constructed chain, CERTS ONLY 231 ortn = SecTrustGetResult(secTrust, &secTrustResult, &certChain, &dummyEv); 242 numResCerts = CFArrayGetCount(certChain); 256 certRef = (SecCertificateRef)CFArrayGetValueAtIndex(certChain, dex); 293 CFArrayRef certChain = NULL; 296 err = completeCertChain(theIdentity, NULL, TRUE, &certChain); 298 CFIndex i, certCount = CFArrayGetCount(certChain); 316 currCertRef = (SecCertificateRef)CFArrayGetValueAtIndex(certChain, i);
|
| /openjdk7/jdk/src/share/classes/java/security/ |
| H A D | CodeSource.java | 611 List<java.security.cert.Certificate> certChain = 613 certChain.add(certs[i++]); // first cert is an end-entity cert 621 certChain.add(certs[j]); 625 CertPath certPath = factory.generateCertPath(certChain);
|
| /openjdk7/jdk/src/share/classes/sun/security/tools/ |
| H A D | JarSigner.java | 116 X509Certificate[] certChain; // signer's cert chain (when composing) field in class:JarSigner 1234 sf.generateBlock(privateKey, sigalg, certChain, 1807 certChain = new X509Certificate[cs.length]; 1813 certChain[i] = (X509Certificate)cs[i]; 1818 printCert("", certChain[0], true, null, true); 1821 CertPath cp = certificateFactory.generateCertPath(Arrays.asList(certChain)); 2224 X509Certificate[] certChain, 2232 return new Block(this, privateKey, sigalg, certChain, externalSF, 2246 X509Certificate[] certChain, boolean externalSF, String tsaUrl, 2252 Principal issuerName = certChain[ 2222 generateBlock(PrivateKey privateKey, String sigalg, X509Certificate[] certChain, boolean externalSF, String tsaUrl, X509Certificate tsaCert, ContentSigner signingMechanism, String[] args, ZipFile zipFile) argument 2245 Block(SignatureFile sfg, PrivateKey privateKey, String sigalg, X509Certificate[] certChain, boolean externalSF, String tsaUrl, X509Certificate tsaCert, ContentSigner signingMechanism, String[] args, ZipFile zipFile) argument [all...] |
| /openjdk7/jdk/src/macosx/classes/apple/security/ |
| H A D | KeychainStore.java | 878 private boolean validateChain(Certificate[] certChain) argument 880 for (int i = 0; i < certChain.length-1; i++) { 882 ((X509Certificate)certChain[i]).getIssuerX500Principal(); 884 ((X509Certificate)certChain[i+1]).getSubjectX500Principal();
|
| /openjdk7/jdk/src/share/classes/sun/security/pkcs12/ |
| H A D | PKCS12KeyStore.java | 894 private boolean validateChain(Certificate[] certChain) argument 896 for (int i = 0; i < certChain.length-1; i++) { 898 ((X509Certificate)certChain[i]).getIssuerX500Principal(); 900 ((X509Certificate)certChain[i+1]).getSubjectX500Principal();
|
| /openjdk7/jdk/src/share/classes/sun/security/util/ |
| H A D | SignatureFileVerifier.java | 483 CertPath certChain = certificateFactory.generateCertPath(chain); 488 signers.add(new CodeSigner(certChain, getTimestamp(info)));
|