/external/conscrypt/openjdk/src/test/java/org/conscrypt/ |
D | TestSessionBuilder.java | 43 private byte[] tlsSctData; field in TestSessionBuilder 109 public TestSessionBuilder setTlsSctData(byte[] tlsSctData) { in setTlsSctData() argument 111 this.tlsSctData = tlsSctData.clone(); in setTlsSctData() 112 tlsSctDataLength = tlsSctData.length; in setTlsSctData() 151 if (tlsSctData == null) { in build() 155 buf.put(tlsSctData); in build()
|
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/ |
D | TestSessionBuilder.java | 47 private byte[] tlsSctData; field in TestSessionBuilder 113 public TestSessionBuilder setTlsSctData(byte[] tlsSctData) { in setTlsSctData() argument 115 this.tlsSctData = tlsSctData.clone(); in setTlsSctData() 116 tlsSctDataLength = tlsSctData.length; in setTlsSctData() 155 if (tlsSctData == null) { in build() 159 buf.put(tlsSctData); in build()
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | TrustManagerImpl.java | 394 byte[] tlsSctData = null; in checkTrusted() 399 tlsSctData = getTlsSctDataFromSession(session); in checkTrusted() 411 return checkTrusted(certs, ocspData, tlsSctData, authType, hostname, clientAuth); in checkTrusted() 468 byte[] tlsSctData, String authType, String host, boolean clientAuth) in checkTrusted() argument 491 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrusted() 519 byte[] tlsSctData, String host, boolean clientAuth, in checkTrustedRecursive() argument 536 tlsSctData); in checkTrustedRecursive() 556 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrustedRecursive() 572 tlsSctData); in checkTrustedRecursive() 601 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrustedRecursive() [all …]
|
D | NativeSslSession.java | 137 byte[] tlsSctData = null; in newInstance() 143 tlsSctData = new byte[tlsSctDataLength]; in newInstance() 144 buf.get(tlsSctData); in newInstance() 155 return new Impl(context, ref, host, port, peerCerts, ocspData, tlsSctData); in newInstance()
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | TrustManagerImpl.java | 408 byte[] tlsSctData = null; in checkTrusted() 413 tlsSctData = getTlsSctDataFromSession(session); in checkTrusted() 425 return checkTrusted(certs, ocspData, tlsSctData, authType, hostname, clientAuth); in checkTrusted() 482 byte[] tlsSctData, String authType, String host, boolean clientAuth) in checkTrusted() argument 505 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrusted() 533 byte[] tlsSctData, String host, boolean clientAuth, in checkTrustedRecursive() argument 550 tlsSctData); in checkTrustedRecursive() 570 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrustedRecursive() 586 tlsSctData); in checkTrustedRecursive() 615 return checkTrustedRecursive(certs, ocspData, tlsSctData, host, clientAuth, in checkTrustedRecursive() [all …]
|
D | NativeSslSession.java | 138 byte[] tlsSctData = null; in newInstance() 144 tlsSctData = new byte[tlsSctDataLength]; in newInstance() 145 buf.get(tlsSctData); in newInstance() 156 return new Impl(context, ref, host, port, peerCerts, ocspData, tlsSctData); in newInstance()
|