Searched defs:getCertificateChain (Results 1 - 12 of 12) sorted by relevance

/libcore/ojluni/src/main/java/javax/net/ssl/
H A DX509KeyManager.java126 public X509Certificate[] getCertificateChain(String alias); method in interface:X509KeyManager
/libcore/support/src/test/java/libcore/javax/net/ssl/
H A DForwardingX509ExtendedKeyManager.java48 public X509Certificate[] getCertificateChain(String alias) { method in class:ForwardingX509ExtendedKeyManager
49 return delegate.getCertificateChain(alias);
H A DTestKeyManager.java122 public X509Certificate[] getCertificateChain(String alias) { method in class:TestKeyManager
123 out.print("TestKeyManager.getCertificateChain");
126 return dumpCerts(keyManager.getCertificateChain(alias));
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
H A DX509ExtendedKeyManagerTest.java57 * @see javax.net.ssl.X509KeyManager#getCertificateChain(java.lang.String)
59 public X509Certificate[] getCertificateChain(String arg0) { method in class:X509ExtendedKeyManagerTest.MockX509ExtendedKeyManager
147 * @see javax.net.ssl.X509KeyManager#getCertificateChain(java.lang.String)
149 public X509Certificate[] getCertificateChain(String alias) { method in class:MyX509ExtendedKeyManager
/libcore/ojluni/src/main/java/sun/security/pkcs/
H A DSignerInfo.java228 public ArrayList<X509Certificate> getCertificateChain(PKCS7 block) method in class:SignerInfo
/libcore/ojluni/src/main/java/sun/security/ssl/
H A DSunX509KeyManagerImpl.java135 Certificate[] certs = ks.getCertificateChain(alias);
167 public X509Certificate[] getCertificateChain(String alias) { method in class:SunX509KeyManagerImpl
H A DX509KeyManagerImpl.java103 public X509Certificate[] getCertificateChain(String alias) { method in class:X509KeyManagerImpl
106 (X509Certificate[])entry.getCertificateChain();
210 // between the calls to getCertificateChain() and getPrivateKey()
625 Certificate[] chain = ks.getCertificateChain(alias);
H A DSSLContextImpl.java1058 public X509Certificate[] getCertificateChain(String alias) { method in class:AbstractKeyManagerWrapper
1059 return km.getCertificateChain(alias);
1147 public X509Certificate[] getCertificateChain(String alias) { method in class:DummyX509KeyManager
H A DSSLSessionImpl.java474 public X509Certificate[] getCertificateChain() method in class:SSLSessionImpl
H A DHandshakeMessage.java494 X509Certificate[] getCertificateChain() { method in class:HandshakeMessage.CertificateMsg
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
H A DX509KeyManagerImpl.java200 public X509Certificate[] getCertificateChain(String s) { method in class:X509KeyManagerImpl
203 X509Certificate[] cert = (X509Certificate[]) keyTest.getCertificateChain(s);
215 Certificate[] cert = keyTest.getCertificateChain(s);
/libcore/ojluni/src/main/java/java/security/
H A DKeyStore.java479 public Certificate[] getCertificateChain() { method in class:KeyStore.PrivateKeyEntry
844 public final Certificate[] getCertificateChain(String alias) method in class:KeyStore

Completed in 732 milliseconds