Searched defs:authType (Results 1 - 18 of 18) sorted by relevance

/openjdk7/jdk/test/sun/net/www/ftptest/
H A DFtpAuthHandler.java32 public int authType(); method in interface:FtpAuthHandler
/openjdk7/jdk/src/share/classes/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
/openjdk7/jdk/src/share/classes/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
/openjdk7/jdk/src/share/classes/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 DHttpURLConnection.java388 final RequestorType authType) {
397 prompt, scheme, url, authType);
380 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
/openjdk7/jdk/test/sun/net/ftp/
H A DB6427768.java40 public int authType() { method in class:B6427768.MyAuthHandler
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/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.java245 public void checkClientTrusted(X509Certificate chain[], String authType) argument
247 tm.checkClientTrusted(chain, authType);
250 public void checkServerTrusted(X509Certificate chain[], String authType) argument
252 tm.checkServerTrusted(chain, authType);
259 public void checkClientTrusted(X509Certificate[] chain, String authType, argument
262 tm.checkClientTrusted(chain, authType);
265 public void checkServerTrusted(X509Certificate[] chain, String authType, argument
268 tm.checkServerTrusted(chain, authType);
271 public void checkClientTrusted(X509Certificate[] chain, String authType, argument
274 tm.checkClientTrusted(chain, authType);
277 checkServerTrusted(X509Certificate[] chain, String authType, SSLEngine engine) argument
[all...]
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/NewAPIs/
H A DCheckMyTrustedKeystore.java397 public void checkClientTrusted(X509Certificate[] chain, String authType) argument
399 System.out.println(" CheckClientTrusted(" + authType + ")?");
402 public void checkServerTrusted(X509Certificate[] chain, String authType) argument
404 System.out.println(" CheckServerTrusted(" + authType + ")?");
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/TLSv11/
H A DEmptyCertificateAuthorities.java178 String authType) throws CertificateException {
182 tm.checkClientTrusted(chain, authType);
186 String authType) throws CertificateException {
190 tm.checkServerTrusted(chain, authType);
177 checkClientTrusted(X509Certificate[] chain, String authType) argument
185 checkServerTrusted(X509Certificate[] chain, String authType) argument
/openjdk7/jdk/src/share/classes/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...]
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLContextImpl/
H A DTrustTrustedCert.java277 public void checkClientTrusted(X509Certificate chain[], String authType) argument
279 tm.checkClientTrusted(chain, authType);
282 public void checkServerTrusted(X509Certificate chain[], String authType) argument
284 tm.checkServerTrusted(chain, authType);
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/
H A DSSLSecurity.java604 java.security.cert.X509Certificate[] chain, String authType)
613 java.security.cert.X509Certificate[] chain, String authType)
603 checkClientTrusted( java.security.cert.X509Certificate[] chain, String authType) argument
612 checkServerTrusted( java.security.cert.X509Certificate[] chain, String authType) argument
/openjdk7/jdk/test/sun/security/ssl/sanity/interop/
H A DCipherTest.java483 public void checkClientTrusted(X509Certificate[] chain, String authType) argument
488 public void checkServerTrusted(X509Certificate[] chain, String authType) argument
501 private String authType; field in class:MyX509KeyManager
507 void setAuthType(String authType) { argument
508 this.authType = authType;
512 if (authType == null) {
515 return keyManager.getClientAliases(authType, issuers);
520 if (authType == null) {
523 return keyManager.chooseClientAlias(new String[] {authType},
[all...]
/openjdk7/jdk/test/sun/security/pkcs11/fips/
H A DCipherTest.java492 public void checkClientTrusted(X509Certificate[] chain, String authType) argument
497 public void checkServerTrusted(X509Certificate[] chain, String authType) argument
510 private String authType; field in class:MyX509KeyManager
516 void setAuthType(String authType) { argument
517 this.authType = authType;
521 if (authType == null) {
524 return keyManager.getClientAliases(authType, issuers);
529 if (authType == null) {
532 return keyManager.chooseClientAlias(new String[] {authType},
[all...]
/openjdk7/jdk/test/sun/security/pkcs11/sslecc/
H A DCipherTest.java478 public void checkClientTrusted(X509Certificate[] chain, String authType) argument
483 public void checkServerTrusted(X509Certificate[] chain, String authType) argument
496 private String authType; field in class:MyX509KeyManager
502 void setAuthType(String authType) { argument
503 this.authType = "ECDSA".equals(authType) ? "EC" : authType;
507 if (authType == null) {
510 return keyManager.getClientAliases(authType, issuers);
515 if (authType
[all...]

Completed in 269 milliseconds