Searched refs:authType (Results 1 - 13 of 13) sorted by relevance

/libcore/ojluni/src/main/java/javax/net/ssl/
H A DX509ExtendedTrustManager.java62 * used. For instance, if RSAPublicKey is used, the authType
81 * @param authType the key exchange algorithm used
87 * string is passed in for the <code>authType</code> parameter
97 String authType, Socket socket) throws CertificateException;
109 * the authType should be RSA_EXPORT when an ephemeral RSA key is
129 * @param authType the key exchange algorithm used
135 * string is passed in for the <code>authType</code> parameter
145 String authType, Socket socket) throws CertificateException;
153 * used. For instance, if RSAPublicKey is used, the authType
170 * @param authType th
96 checkClientTrusted(X509Certificate[] chain, String authType, Socket socket) argument
144 checkServerTrusted(X509Certificate[] chain, String authType, Socket socket) argument
185 checkClientTrusted(X509Certificate[] chain, String authType, SSLEngine engine) argument
231 checkServerTrusted(X509Certificate[] chain, String authType, SSLEngine engine) argument
[all...]
H A DX509TrustManager.java47 * used. For instance, if RSAPublicKey is used, the authType
51 * @param authType the authentication type based on the client certificate
54 * string is passed in for the authType parameter
58 public void checkClientTrusted(X509Certificate[] chain, String authType) argument
72 * the authType should be RSA_EXPORT when an ephemeral RSA key is
77 * @param authType the key exchange algorithm used
80 * string is passed in for the authType parameter
84 public void checkServerTrusted(X509Certificate[] chain, String authType) argument
/libcore/support/src/test/java/libcore/javax/net/ssl/
H A DTestTrustManager.java72 public void checkClientTrusted(X509Certificate[] chain, String authType) argument
76 + "authType=" + authType + " ");
78 assertClientAuthType(authType);
79 trustManager.checkClientTrusted(chain, authType);
88 public void checkClientTrusted(X509Certificate[] chain, String authType, Socket socket) argument
92 checkClientTrusted(chain, authType);
97 + "authType=" + authType + " "
100 assertClientAuthType(authType);
110 checkClientTrusted(X509Certificate[] chain, String authType, SSLEngine engine) argument
131 assertClientAuthType(String authType) argument
137 checkServerTrusted(X509Certificate[] chain, String authType) argument
153 checkServerTrusted(X509Certificate[] chain, String authType, Socket socket) argument
175 checkServerTrusted(X509Certificate[] chain, String authType, SSLEngine engine) argument
196 assertServerAuthType(String authType) argument
[all...]
/libcore/ojluni/src/main/java/com/sun/net/ssl/internal/ssl/
H A DX509ExtendedTrustManager.java72 * used. For instance, if RSAPublicKey is used, the authType
81 * @param authType the authentication type based on the client certificate
86 * string is passed in for the authType parameter
91 String authType, String hostname, String algorithm)
110 * @param authType the key exchange algorithm used
115 * string is passed in for the authType parameter
120 String authType, String hostname, String algorithm)
90 checkClientTrusted(X509Certificate[] chain, String authType, String hostname, String algorithm) argument
119 checkServerTrusted(X509Certificate[] chain, String authType, String hostname, String algorithm) argument
/libcore/ojluni/src/main/java/sun/net/www/protocol/http/
H A DHttpCallerInfo.java51 final public RequestorType authType; field in class:HttpCallerInfo
63 this.authType = old.authType;
91 authType = RequestorType.SERVER;
105 authType = RequestorType.PROXY;
H A DNegotiateAuthentication.java67 super(RequestorType.PROXY==hci.authType ? PROXY_AUTHENTICATION : SERVER_AUTHENTICATION,
H A DHttpURLConnection.java389 final RequestorType authType) {
398 prompt, scheme, url, authType);
381 privilegedRequestPasswordAuthentication( final String host, final InetAddress addr, final int port, final String protocol, final String prompt, final String scheme, final URL url, final RequestorType authType) argument
/libcore/ojluni/src/main/java/sun/security/ssl/
H A DX509TrustManagerImpl.java99 public void checkClientTrusted(X509Certificate chain[], String authType) argument
101 checkTrusted(chain, authType, (Socket)null, true);
105 public void checkServerTrusted(X509Certificate chain[], String authType) argument
107 checkTrusted(chain, authType, (Socket)null, false);
118 public void checkClientTrusted(X509Certificate[] chain, String authType, argument
120 checkTrusted(chain, authType, socket, true);
124 public void checkServerTrusted(X509Certificate[] chain, String authType, argument
126 checkTrusted(chain, authType, socket, false);
130 public void checkClientTrusted(X509Certificate[] chain, String authType, argument
132 checkTrusted(chain, authType, engin
136 checkServerTrusted(X509Certificate[] chain, String authType, SSLEngine engine) argument
141 checkTrustedInit(X509Certificate[] chain, String authType, boolean isClient) argument
184 checkTrusted(X509Certificate[] chain, String authType, Socket socket, boolean isClient) argument
239 checkTrusted(X509Certificate[] chain, String authType, SSLEngine engine, boolean isClient) argument
321 validate(Validator v, X509Certificate[] chain, AlgorithmConstraints constraints, String authType) argument
[all...]
H A DSSLContextImpl.java787 public void checkClientTrusted(X509Certificate[] chain, String authType) argument
789 tm.checkClientTrusted(chain, authType);
793 public void checkServerTrusted(X509Certificate[] chain, String authType) argument
795 tm.checkServerTrusted(chain, authType);
804 public void checkClientTrusted(X509Certificate[] chain, String authType, argument
806 tm.checkClientTrusted(chain, authType);
807 checkAdditionalTrust(chain, authType, socket, true);
811 public void checkServerTrusted(X509Certificate[] chain, String authType, argument
813 tm.checkServerTrusted(chain, authType);
814 checkAdditionalTrust(chain, authType, socke
818 checkClientTrusted(X509Certificate[] chain, String authType, SSLEngine engine) argument
825 checkServerTrusted(X509Certificate[] chain, String authType, SSLEngine engine) argument
831 checkAdditionalTrust(X509Certificate[] chain, String authType, Socket socket, boolean isClient) argument
876 checkAdditionalTrust(X509Certificate[] chain, String authType, SSLEngine engine, boolean isClient) argument
971 checkClientTrusted(X509Certificate[] chain, String authType) argument
985 checkServerTrusted(X509Certificate[] chain, String authType) argument
1001 checkClientTrusted(X509Certificate[] chain, String authType, Socket socket) argument
1008 checkServerTrusted(X509Certificate[] chain, String authType, Socket socket) argument
1015 checkClientTrusted(X509Certificate[] chain, String authType, SSLEngine engine) argument
1022 checkServerTrusted(X509Certificate[] chain, String authType, SSLEngine engine) argument
[all...]
H A DServerHandshaker.java1643 String authType;
1645 authType = "RSA";
1647 authType = "DSA";
1649 authType = "EC";
1652 authType = "UNKNOWN";
1659 authType,
1664 authType,
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
H A DHandshakeCompletedEventTest.java561 private String authType; field in class:HandshakeCompletedEventTest.TestTrustManager
563 public void checkClientTrusted(X509Certificate[] chain, String authType) { argument
565 this.authType = authType;
568 public void checkServerTrusted(X509Certificate[] chain, String authType) { argument
570 this.authType = authType;
582 return authType;
586 java.security.cert.X509Certificate[] chain, String authType)
592 java.security.cert.X509Certificate[] chain, String authType)
585 checkClientTrusted( java.security.cert.X509Certificate[] chain, String authType) argument
591 checkServerTrusted( java.security.cert.X509Certificate[] chain, String authType) argument
[all...]
/libcore/luni/src/test/java/libcore/java/net/
H A DURLConnectionTest.java3038 public void checkClientTrusted(X509Certificate[] chain, String authType) argument
3040 calls.add("checkClientTrusted " + certificatesToString(chain) + " " + authType);
3043 public void checkServerTrusted(X509Certificate[] chain, String authType) argument
3045 calls.add("checkServerTrusted " + certificatesToString(chain) + " " + authType);
/libcore/luni/src/test/java/libcore/javax/net/ssl/
H A DSSLSocketTest.java900 @Override public void checkClientTrusted(X509Certificate[] chain, String authType)
904 @Override public void checkServerTrusted(X509Certificate[] chain, String authType)

Completed in 903 milliseconds