Uses of Class
java.security.Provider

Packages that use Provider
java.security Provides the classes and interfaces for the security framework. 
java.security.cert Provides classes and interfaces for parsing and managing certificates, certificate revocation lists (CRLs), and certification paths. 
javax.net.ssl Provides classes for the secure socket package. 
 

Uses of Provider in java.security
 

Methods in java.security that return Provider
 Provider MessageDigest.getProvider()
          Returns the provider of this message digest object.
 Provider Signature.getProvider()
          Returns the provider of this signature object.
 Provider AlgorithmParameters.getProvider()
          Returns the provider of this parameter object.
 Provider KeyFactory.getProvider()
          Returns the provider of this key factory object.
 Provider SecureRandom.getProvider()
          Returns the provider of this SecureRandom object.
 Provider KeyStore.getProvider()
          Returns the provider of this keystore.
 Provider KeyPairGenerator.getProvider()
          Returns the provider of this key pair generator object.
 Provider AlgorithmParameterGenerator.getProvider()
          Returns the provider of this algorithm parameter generator object.
static Provider Security.getProvider(String name)
          Returns the provider installed with the specified name, if any.
static Provider[] Security.getProviders()
          Returns an array containing all the installed providers.
static Provider[] Security.getProviders(Map filter)
          Returns an array containing all installed providers that satisfy the specified selection criteria, or null if no such providers have been installed.
static Provider[] Security.getProviders(String filter)
          Returns an array containing all installed providers that satisfy the specified selection criterion, or null if no such providers have been installed.
 

Methods in java.security with parameters of type Provider
static int Security.addProvider(Provider provider)
          Adds a provider to the next position available.
static MessageDigest MessageDigest.getInstance(String algorithm, Provider provider)
          Generates a MessageDigest object implementing the specified algorithm, as supplied from the specified provider, if such an algorithm is available from the provider.
static Signature Signature.getInstance(String algorithm, Provider provider)
          Generates a Signature object implementing the specified algorithm, as supplied from the specified provider, if such an algorithm is available from the provider.
static AlgorithmParameters AlgorithmParameters.getInstance(String algorithm, Provider provider)
          Generates a parameter object for the specified algorithm, as supplied by the specified provider, if such an algorithm is available from the provider.
static KeyFactory KeyFactory.getInstance(String algorithm, Provider provider)
          Generates a KeyFactory object for the specified algorithm from the specified provider.
static SecureRandom SecureRandom.getInstance(String algorithm, Provider provider)
          Generates a SecureRandom object for the specified PRNG algorithm, as supplied from the specified provider, if such a PRNG implementation is available from the provider.
static KeyStore KeyStore.getInstance(String type, Provider provider)
          Generates a keystore object for the specified keystore type from the specified provider.
static KeyPairGenerator KeyPairGenerator.getInstance(String algorithm, Provider provider)
          Generates a KeyPairGenerator object implementing the specified algorithm, as supplied from the specified provider, if such an algorithm is available from the provider.
static AlgorithmParameterGenerator AlgorithmParameterGenerator.getInstance(String algorithm, Provider provider)
          Generates an AlgorithmParameterGenerator object for the requested algorithm, as supplied from the specified provider, if such a parameter generator is available from the provider.
static int Security.insertProviderAt(Provider provider, int position)
          Adds a new provider, at a specified position.
 

Uses of Provider in java.security.cert
 

Methods in java.security.cert that return Provider
 Provider CertificateFactory.getProvider()
          Returns the provider of this certificate factory.
 

Methods in java.security.cert with parameters of type Provider
static CertificateFactory CertificateFactory.getInstance(String type, Provider provider)
          Generates a certificate factory object for the specified certificate type from the specified provider.
 

Uses of Provider in javax.net.ssl
 

Methods in javax.net.ssl that return Provider
 Provider TrustManagerFactory.getProvider()
          Returns the provider of this TrustManagerFactory object.
 Provider SSLContext.getProvider()
          Returns the provider of this SSLContext object.
 Provider KeyManagerFactory.getProvider()
          Returns the provider of this KeyManagerFactory object.
 

Methods in javax.net.ssl with parameters of type Provider
static TrustManagerFactory TrustManagerFactory.getInstance(String algorithm, Provider provider)
          Generates a TrustManagerFactory object for the specified trust management algorithm from the specified provider.
static SSLContext SSLContext.getInstance(String protocol, Provider provider)
          Generates a SSLContext object that implements the specified secure socket protocol from the specified provider.
static KeyManagerFactory KeyManagerFactory.getInstance(String algorithm, Provider provider)
          Generates a KeyManagerFactory object for the specified key management algorithm from the specified provider.