Uses of Class
java.security.KeyStore

Packages that use KeyStore
java.security Provides the classes and interfaces for the security framework. 
javax.net.ssl Provides classes for the secure socket package. 
 

Uses of KeyStore in java.security
 

Methods in java.security that return KeyStore
static KeyStore KeyStore.getInstance(String type)
          Generates a keystore object of the given type.
static KeyStore KeyStore.getInstance(String type, Provider provider)
          Generates a keystore object for the specified keystore type from the specified provider.
static KeyStore KeyStore.getInstance(String type, String provider)
          Generates a keystore object for the specified keystore type from the specified provider.
 

Uses of KeyStore in javax.net.ssl
 

Methods in javax.net.ssl with parameters of type KeyStore
 void TrustManagerFactory.init(KeyStore ks)
          Initializes this factory with a source of certificate authorities and related trust material.
 void KeyManagerFactory.init(KeyStore ks, char[] password)
          Initializes this factory with a source of key material.