Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.security.Provider

Uses of Provider in java.security
 

Fields in java.security declared as Provider
(package private)  Provider MessageDigest.provider
           
(package private)  Provider Signature.provider
           
private  Provider AlgorithmParameters.provider
           
(package private)  Provider SecureRandom.provider
           
private  Provider KeyStore.provider
           
(package private)  Provider KeyPairGenerator.provider
           
private  Provider KeyFactory.provider
           
private  Provider AlgorithmParameterGenerator.provider
           
 

Methods in java.security that return Provider
static Provider[] Security.getProviders()
          Returns the current list of installed Providers as an array ordered according to their installation preference order.
static Provider Security.getProvider(java.lang.String name)
          Returns an already installed Provider given its name.
static Provider[] Security.getProviders(java.lang.String filter)
          Returns an array of currently installed Providers, ordered according to their installation preference order, which satisfy a given selection criterion.
static Provider[] Security.getProviders(java.util.Map filter)
          Returns an array of currently installed Providers which satisfy a set of selection criteria.
 Provider MessageDigest.getProvider()
          Returns the Provider of this instance.
 Provider Signature.getProvider()
          Returns the Provider of this instance.
 Provider AlgorithmParameters.getProvider()
           
 Provider SecureRandom.getProvider()
          Returns the provider being used by the current SecureRandom class.
 Provider KeyStore.getProvider()
          Gets the provider that the class is from.
 Provider KeyPairGenerator.getProvider()
          Returns the Provider of this instance.
 Provider KeyFactory.getProvider()
          Returns the Provider of this instance.
 Provider AlgorithmParameterGenerator.getProvider()
           
 

Methods in java.security with parameters of type Provider
static int Security.insertProviderAt(Provider provider, int position)
          Inserts a new designated Provider at a designated (1-based) position in the current list of installed Providers,
static int Security.addProvider(Provider provider)
          Appends the designated new Provider to the current list of installed Providers.
private static boolean Security.provides(Provider p, java.lang.String svc, java.lang.String algo, java.lang.String attr, java.lang.String val)
           
static MessageDigest MessageDigest.getInstance(java.lang.String algorithm, Provider provider)
          Returns a new instance of MessageDigest representing the specified algorithm from a designated Provider.
static Signature Signature.getInstance(java.lang.String algorithm, Provider provider)
          Returns an instance of Signature representing the specified signature from the specified Provider.
static AlgorithmParameters AlgorithmParameters.getInstance(java.lang.String algorithm, Provider provider)
          Returns a new instance of AlgorithmParameters representing the specified algorithm parameters from the specified Provider.
static SecureRandom SecureRandom.getInstance(java.lang.String algorithm, Provider provider)
          Returns an instance of a SecureRandom.
static KeyStore KeyStore.getInstance(java.lang.String type, Provider provider)
          Gets an instance of the KeyStore class representing the specified key store from the specified provider.
static KeyPairGenerator KeyPairGenerator.getInstance(java.lang.String algorithm, Provider provider)
          Returns a new instance of KeyPairGenerator which generates key-pairs for the specified algorithm from a designated Provider.
static KeyFactory KeyFactory.getInstance(java.lang.String algorithm, Provider provider)
          Returns a new instance of KeyFactory representing the specified key factory from the designated Provider.
static AlgorithmParameterGenerator AlgorithmParameterGenerator.getInstance(java.lang.String algorithm, Provider provider)
          Returns a new AlgorithmParameterGenerator instance which generates algorithm parameters for the specified algorithm.
 

Constructors in java.security with parameters of type Provider
AlgorithmParameters(AlgorithmParametersSpi paramSpi, Provider provider, java.lang.String algorithm)
          Constructs a new instance of AlgorithmParameters.
SecureRandom(SecureRandomSpi secureRandomSpi, Provider provider)
          A constructor for SecureRandom.
SecureRandom(SecureRandomSpi secureRandomSpi, Provider provider, java.lang.String algorithm)
          Private constructor called from the getInstance() method.
KeyStore(KeyStoreSpi keyStoreSpi, Provider provider, java.lang.String type)
          Creates an instance of KeyStore
KeyFactory(KeyFactorySpi keyFacSpi, Provider provider, java.lang.String algorithm)
          Constructs a new instance of KeyFactory with the specified parameters.
AlgorithmParameterGenerator(AlgorithmParameterGeneratorSpi paramGenSpi, Provider provider, java.lang.String algorithm)
          Constructs a new instance of AlgorithmParameterGenerator.