1 7 8 15 16 package javax.net.ssl; 17 18 import java.security.*; 19 20 33 public abstract class KeyManagerFactorySpi 34 { 35 36 public KeyManagerFactorySpi() { } 37 38 49 protected abstract void engineInit(KeyStore ks, char[] password) 50 throws KeyStoreException, NoSuchAlgorithmException, 51 UnrecoverableKeyException; 52 53 70 protected abstract void engineInit(ManagerFactoryParameters spec) 71 throws InvalidAlgorithmParameterException; 72 73 78 protected abstract KeyManager[] engineGetKeyManagers(); 79 } 80 | Popular Tags |