Exemplo n.º 1
0
 public String[] getServerAliases(String keyType, Principal[] issuers) {
   return keyManager.getServerAliases(keyType, issuers);
 }
Exemplo n.º 2
0
 /**
  * Get the matching aliases for authenticating the server side of a secure socket, given the
  * public key type and the list of certificate issuer authorities recognized by the peer (if any).
  *
  * @param keyType The key algorithm type name
  * @param issuers The list of acceptable CA issuer subject names, or null if it does not matter
  *     which issuers are used
  * @return Array of the matching alias names, or null if there were no matches
  */
 public String[] getServerAliases(String keyType, Principal[] issuers) {
   return delegate.getServerAliases(keyType, issuers);
 }
Exemplo n.º 3
0
 public String[] getServerAliases(String keyType, Principal[] issuers) {
   System.out.println("Calling from X509KeyManager");
   return km.getServerAliases(keyType, issuers);
 }
Exemplo n.º 4
0
 public String[] getServerAliases(String s, Principal[] principals) {
   return wrapped.getServerAliases(s, principals);
 }
Exemplo n.º 5
0
 public String[] getServerAliases(String arg0, Principal[] arg1) {
   return pkixKeyManager.getServerAliases(arg0, arg1);
 }