OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:clientAuth
(Results
1 - 5
of
5
) sorted by null
/libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLContext.java
266
public static SSLSocketFactory
clientAuth
(final SSLSocketFactory sf,
/libcore/crypto/src/main/java/org/conscrypt/
TrustManagerImpl.java
214
String host, boolean
clientAuth
)
293
params.addCertPathChecker(new ExtendedKeyUsagePKIXCertPathChecker(
clientAuth
,
397
* clients, this includes anyExtendedKeyUsage and
clientAuth
.
412
private final boolean
clientAuth
;
415
private ExtendedKeyUsagePKIXCertPathChecker(boolean
clientAuth
, X509Certificate leaf) {
416
this.
clientAuth
=
clientAuth
;
458
if (
clientAuth
) {
/libcore/luni/src/test/java/tests/api/javax/net/ssl/
HandshakeCompletedEventTest.java
395
private int
clientAuth
;
399
public TestServer(boolean provideKeys, int
clientAuth
, String keys) throws Exception {
401
this.
clientAuth
=
clientAuth
;
414
if (
clientAuth
== CLIENT_AUTH_WANTED) {
416
} else if (
clientAuth
== CLIENT_AUTH_NEEDED) {
SSLSessionTest.java
478
private int
clientAuth
;
484
public TestServer(boolean provideKeys, int
clientAuth
, String keys) throws Exception {
486
this.
clientAuth
=
clientAuth
;
500
if (
clientAuth
== CLIENT_AUTH_WANTED) {
502
} else if (
clientAuth
== CLIENT_AUTH_NEEDED) {
/frameworks/base/tests/CoreTests/android/core/
SSLSocketTest.java
634
private int
clientAuth
;
638
public TestServer(int port, boolean provideKeys, int
clientAuth
) {
640
this.
clientAuth
=
clientAuth
;
660
if (
clientAuth
== CLIENT_AUTH_WANTED) {
662
} else if (
clientAuth
== CLIENT_AUTH_NEEDED) {
[
all
...]
Completed in 882 milliseconds