OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TrustManagerImpl
(Results
1 - 2
of
2
) sorted by null
/libcore/crypto/src/test/java/org/conscrypt/
TrustManagerImplTest.java
130
assertTrue(tm instanceof
TrustManagerImpl
);
131
TrustManagerImpl
tmi = (
TrustManagerImpl
) tm;
173
private
TrustManagerImpl
trustManager(X509Certificate ca, String hostname, X509Certificate pin)
180
return new
TrustManagerImpl
(keyStore, cm);
195
if (tm instanceof
TrustManagerImpl
) {
196
TrustManagerImpl
tmi = (
TrustManagerImpl
) tm;
204
if (tm instanceof
TrustManagerImpl
) {
205
TrustManagerImpl
tmi = (TrustManagerImpl) tm
[
all
...]
/libcore/crypto/src/main/java/org/conscrypt/
TrustManagerImpl.java
53
public final class
TrustManagerImpl
implements X509TrustManager {
96
public
TrustManagerImpl
(KeyStore keyStore) {
103
public
TrustManagerImpl
(KeyStore keyStore, CertPinManager manager) {
157
// TrustedCertificateEntry, which is why
TrustManagerImpl
Completed in 64 milliseconds