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

12

/openjdk10/jdk/src/java.base/share/classes/javax/net/ssl/
H A DX509ExtendedTrustManager.java63 * used. For instance, if RSAPublicKey is used, the authType
82 * @param authType the key exchange algorithm used
88 * string is passed in for the {@code authType} parameter
98 String authType, Socket socket) throws CertificateException;
110 * the authType should be RSA_EXPORT when an ephemeral RSA key is
130 * @param authType the key exchange algorithm used
136 * string is passed in for the {@code authType} parameter
146 String authType, Socket socket) throws CertificateException;
154 * used. For instance, if RSAPublicKey is used, the authType
171 * @param authType th
97 checkClientTrusted(X509Certificate[] chain, String authType, Socket socket) argument
145 checkServerTrusted(X509Certificate[] chain, String authType, Socket socket) argument
186 checkClientTrusted(X509Certificate[] chain, String authType, SSLEngine engine) argument
232 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
/openjdk10/jdk/test/sun/net/www/ftptest/
H A DFtpAuthHandler.java32 public int authType(); method in interface:FtpAuthHandler
/openjdk10/jdk/src/java.base/share/classes/com/sun/net/ssl/internal/ssl/
H A DX509ExtendedTrustManager.java73 * used. For instance, if RSAPublicKey is used, the authType
82 * @param authType the authentication type based on the client certificate
87 * string is passed in for the authType parameter
92 String authType, String hostname, String algorithm)
111 * @param authType the key exchange algorithm used
116 * string is passed in for the authType parameter
121 String authType, String hostname, String algorithm)
91 checkClientTrusted(X509Certificate[] chain, String authType, String hostname, String algorithm) argument
120 checkServerTrusted(X509Certificate[] chain, String authType, String hostname, String algorithm) argument
/openjdk10/jdk/test/sun/security/ssl/SSLContextImpl/
H A DNullGetAcceptedIssuers.java47 String authType) {
52 String authType) {
H A DTrustTrustedCert.java250 public void checkClientTrusted(X509Certificate chain[], String authType) argument
252 tm.checkClientTrusted(chain, authType);
255 public void checkServerTrusted(X509Certificate chain[], String authType) argument
257 tm.checkServerTrusted(chain, authType);
/openjdk10/jdk/src/java.base/share/classes/sun/net/www/protocol/http/
H A DHttpCallerInfo.java52 public final RequestorType authType; field in class:HttpCallerInfo
65 this.authType = old.authType;
94 authType = RequestorType.SERVER;
109 authType = RequestorType.PROXY;
/openjdk10/jdk/src/java.base/share/classes/sun/security/ssl/
H A DX509TrustManagerImpl.java106 public void checkClientTrusted(X509Certificate[] chain, String authType) argument
108 checkTrusted(chain, authType, (Socket)null, true);
112 public void checkServerTrusted(X509Certificate[] chain, String authType) argument
114 checkTrusted(chain, authType, (Socket)null, false);
125 public void checkClientTrusted(X509Certificate[] chain, String authType, argument
127 checkTrusted(chain, authType, socket, true);
131 public void checkServerTrusted(X509Certificate[] chain, String authType, argument
133 checkTrusted(chain, authType, socket, false);
137 public void checkClientTrusted(X509Certificate[] chain, String authType, argument
139 checkTrusted(chain, authType, engin
143 checkServerTrusted(X509Certificate[] chain, String authType, SSLEngine engine) argument
148 checkTrustedInit(X509Certificate[] chain, String authType, boolean isClient) argument
190 checkTrusted(X509Certificate[] chain, String authType, Socket socket, boolean isClient) argument
251 checkTrusted(X509Certificate[] chain, String authType, SSLEngine engine, boolean isClient) argument
337 validate(Validator v, X509Certificate[] chain, List<byte[]> responseList, AlgorithmConstraints constraints, String authType) argument
[all...]
H A DSSLContextImpl.java1355 public void checkClientTrusted(X509Certificate[] chain, String authType) argument
1357 tm.checkClientTrusted(chain, authType);
1361 public void checkServerTrusted(X509Certificate[] chain, String authType) argument
1363 tm.checkServerTrusted(chain, authType);
1372 public void checkClientTrusted(X509Certificate[] chain, String authType, argument
1374 tm.checkClientTrusted(chain, authType);
1375 checkAdditionalTrust(chain, authType, socket, true);
1379 public void checkServerTrusted(X509Certificate[] chain, String authType, argument
1381 tm.checkServerTrusted(chain, authType);
1382 checkAdditionalTrust(chain, authType, socke
1386 checkClientTrusted(X509Certificate[] chain, String authType, SSLEngine engine) argument
1393 checkServerTrusted(X509Certificate[] chain, String authType, SSLEngine engine) argument
1399 checkAdditionalTrust(X509Certificate[] chain, String authType, Socket socket, boolean isClient) argument
1444 checkAdditionalTrust(X509Certificate[] chain, String authType, SSLEngine engine, boolean isClient) argument
1541 checkClientTrusted(X509Certificate[] chain, String authType) argument
1555 checkServerTrusted(X509Certificate[] chain, String authType) argument
1571 checkClientTrusted(X509Certificate[] chain, String authType, Socket socket) argument
1578 checkServerTrusted(X509Certificate[] chain, String authType, Socket socket) argument
1585 checkClientTrusted(X509Certificate[] chain, String authType, SSLEngine engine) argument
1592 checkServerTrusted(X509Certificate[] chain, String authType, SSLEngine engine) argument
[all...]
/openjdk10/jdk/test/java/net/HttpURLConnection/SetAuthenticator/
H A DHTTPTestServer.java107 HttpAuthType authType,
111 return create(protocol, authType, auth, schemeType, null);
115 HttpAuthType authType,
120 Objects.requireNonNull(authType);
122 switch(authType) {
124 case SERVER: return createServer(protocol, authType, auth,
130 case PROXY: return createProxy(protocol, authType, auth,
146 throw new InternalError("Unknown server type: " + authType);
237 HttpAuthType authType,
243 Objects.requireNonNull(authType);
106 create(HttpProtocolType protocol, HttpAuthType authType, HttpTestAuthenticator auth, HttpSchemeType schemeType) argument
114 create(HttpProtocolType protocol, HttpAuthType authType, HttpTestAuthenticator auth, HttpSchemeType schemeType, HttpHandler delegate) argument
236 createServer(HttpProtocolType protocol, HttpAuthType authType, HttpTestAuthenticator auth, HttpSchemeType schemeType, HttpHandler delegate, String path) argument
255 createProxy(HttpProtocolType protocol, HttpAuthType authType, HttpTestAuthenticator auth, HttpSchemeType schemeType, HttpHandler delegate, String path) argument
332 createHandler(HttpSchemeType schemeType, HttpTestAuthenticator auth, HttpAuthType authType) argument
338 configureAuthentication(HttpContext ctxt, HttpSchemeType schemeType, HttpTestAuthenticator auth, HttpAuthType authType) argument
387 final HttpAuthType authType; field in class:HTTPTestServer.AbstractHttpFilter
389 AbstractHttpFilter(HttpAuthType authType, String type) argument
602 HttpNoAuthFilter(HttpAuthType authType) argument
628 HttpBasicFilter(HttpTestAuthenticator auth, HttpAuthType authType) argument
699 HttpDigestFilter(HttpTestAuthenticator auth, HttpAuthType authType) argument
797 final HttpAuthType authType; field in class:HTTPTestServer.AbstractHttpHandler
799 AbstractHttpHandler(HttpAuthType authType, String type) argument
828 HttpNoAuthHandler(HttpAuthType authType) argument
846 Http3xxHandler(URL proxyURL, HttpAuthType authType, int code300) argument
[all...]
H A DHTTPTestClient.java42 HttpAuthType authType,
48 final Proxy proxy = proxy(server, authType);
51 HttpURLConnection conn = openConnection(url, authType, proxy);
60 conn = openConnection(url, authType, proxy);
40 connect(HttpProtocolType protocol, HTTPTestServer server, HttpAuthType authType, Authenticator auth) argument
H A DHTTPTest.java267 public static Proxy proxy(HTTPTestServer server, HttpAuthType authType) { argument
268 return (authType == HttpAuthType.PROXY)
274 HttpAuthType authType,
279 (authType == HttpAuthType.PROXY
273 openConnection(URL url, HttpAuthType authType, Proxy proxy) argument
/openjdk10/jdk/test/sun/security/mscapi/
H A DShortRSAKeyWithinTLS.java379 public void checkClientTrusted(X509Certificate chain[], String authType) argument
381 tm.checkClientTrusted(chain, authType);
384 public void checkServerTrusted(X509Certificate chain[], String authType) argument
386 tm.checkServerTrusted(chain, authType);
402 public void checkClientTrusted(X509Certificate[] chain, String authType, argument
404 tm.checkClientTrusted(chain, authType);
407 public void checkServerTrusted(X509Certificate[] chain, String authType, argument
409 tm.checkServerTrusted(chain, authType);
412 public void checkClientTrusted(X509Certificate[] chain, String authType, argument
414 tm.checkClientTrusted(chain, authType);
417 checkServerTrusted(X509Certificate[] chain, String authType, SSLEngine engine) argument
[all...]
/openjdk10/jdk/test/sun/security/ssl/X509TrustManagerImpl/
H A DCertRequestOverflow.java247 public void checkClientTrusted(X509Certificate chain[], String authType) argument
249 tm.checkClientTrusted(chain, authType);
252 public void checkServerTrusted(X509Certificate chain[], String authType) argument
254 tm.checkServerTrusted(chain, authType);
271 public void checkClientTrusted(X509Certificate[] chain, String authType, argument
274 tm.checkClientTrusted(chain, authType);
277 public void checkServerTrusted(X509Certificate[] chain, String authType, argument
280 tm.checkServerTrusted(chain, authType);
283 public void checkClientTrusted(X509Certificate[] chain, String authType, argument
286 tm.checkClientTrusted(chain, authType);
289 checkServerTrusted(X509Certificate[] chain, String authType, SSLEngine engine) argument
[all...]
H A DX509ExtendedTMEnabled.java243 public void checkClientTrusted(X509Certificate chain[], String authType) argument
245 tm.checkClientTrusted(chain, authType);
248 public void checkServerTrusted(X509Certificate chain[], String authType) argument
250 tm.checkServerTrusted(chain, authType);
257 public void checkClientTrusted(X509Certificate[] chain, String authType, argument
260 tm.checkClientTrusted(chain, authType);
263 public void checkServerTrusted(X509Certificate[] chain, String authType, argument
266 tm.checkServerTrusted(chain, authType);
269 public void checkClientTrusted(X509Certificate[] chain, String authType, argument
272 tm.checkClientTrusted(chain, authType);
275 checkServerTrusted(X509Certificate[] chain, String authType, SSLEngine engine) argument
[all...]
H A DCheckNullEntity.java109 String authType = "RSA";
144 trustManager.checkClientTrusted(null, authType);
151 trustManager.checkServerTrusted(null, authType);
192 null, authType, "localhost", null);
200 null, authType, "localhost", null);
/openjdk10/jdk/src/java.base/share/classes/sun/security/provider/certpath/ssl/
H A DSSLServerCertStore.java180 String authType) throws CertificateException {
186 public void checkClientTrusted(X509Certificate[] chain, String authType, argument
193 public void checkClientTrusted(X509Certificate[] chain, String authType, argument
201 String authType) throws CertificateException {
211 public void checkServerTrusted(X509Certificate[] chain, String authType, argument
214 checkServerTrusted(chain, authType);
218 public void checkServerTrusted(X509Certificate[] chain, String authType, argument
221 checkServerTrusted(chain, authType);
179 checkClientTrusted(X509Certificate[] chain, String authType) argument
200 checkServerTrusted(X509Certificate[] chain, String authType) argument
/openjdk10/jdk/test/sun/security/pkcs11/sslecc/
H A DCipherTest.java511 public void checkClientTrusted(X509Certificate[] chain, String authType) argument
517 public void checkServerTrusted(X509Certificate[] chain, String authType) argument
531 private String authType; field in class:MyX509KeyManager
537 void setAuthType(String authType) { argument
538 this.authType = "ECDSA".equals(authType) ? "EC" : authType;
543 if (authType == null) {
546 return keyManager.getClientAliases(authType, issuers);
552 if (authType
[all...]
/openjdk10/jdk/test/sun/security/pkcs11/fips/
H A DCipherTest.java519 public void checkClientTrusted(X509Certificate[] chain, String authType) argument
524 public void checkServerTrusted(X509Certificate[] chain, String authType) argument
537 private String authType; field in class:MyX509KeyManager
543 void setAuthType(String authType) { argument
544 this.authType = authType;
548 if (authType == null) {
551 return keyManager.getClientAliases(authType, issuers);
556 if (authType == null) {
559 return keyManager.chooseClientAlias(new String[] {authType},
[all...]
/openjdk10/jdk/test/javax/net/ssl/sanity/interop/
H A DCipherTest.java502 public void checkClientTrusted(X509Certificate[] chain, String authType) argument
507 public void checkServerTrusted(X509Certificate[] chain, String authType) argument
520 private String authType; field in class:MyX509KeyManager
526 void setAuthType(String authType) { argument
527 this.authType = authType;
531 if (authType == null) {
534 return keyManager.getClientAliases(authType, issuers);
539 if (authType == null) {
542 return keyManager.chooseClientAlias(new String[] {authType},
[all...]
/openjdk10/jdk/test/javax/net/ssl/TLS/
H A DCipherTestUtils.java590 public void checkClientTrusted(X509Certificate[] chain, String authType) argument
593 trustManager.checkClientTrusted(chain, authType);
600 public void checkServerTrusted(X509Certificate[] chain, String authType) argument
603 trustManager.checkServerTrusted(chain, authType);
618 private String authType; field in class:MyX509KeyManager
624 void setAuthType(String authType) { argument
625 this.authType = "ECDSA".equals(authType) ? "EC" : authType;
630 if (authType
[all...]
/openjdk10/jdk/test/javax/net/ssl/SSLSession/
H A DCheckMyTrustedKeystore.java398 public void checkClientTrusted(X509Certificate[] chain, String authType) argument
400 System.out.println(" CheckClientTrusted(" + authType + ")?");
403 public void checkServerTrusted(X509Certificate[] chain, String authType) argument
405 System.out.println(" CheckServerTrusted(" + authType + ")?");
/openjdk10/jdk/test/sun/net/ftp/
H A DB6427768.java41 public int authType() { method in class:B6427768.MyAuthHandler
/openjdk10/jdk/test/javax/net/ssl/TLSv11/
H A DEmptyCertificateAuthorities.java197 String authType) throws CertificateException {
201 tm.checkClientTrusted(chain, authType);
205 String authType) throws CertificateException {
209 tm.checkServerTrusted(chain, authType);
196 checkClientTrusted(X509Certificate[] chain, String authType) argument
204 checkServerTrusted(X509Certificate[] chain, String authType) argument
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/net/www/protocol/http/spnego/
H A DNegotiateCallbackHandler.java68 hci.prompt, hci.scheme, hci.url, hci.authType);

Completed in 839 milliseconds

12