JavaTM 2 Platform
Std. Ed. v1.4.2

Uses of Class
java.security.AlgorithmParameters

Packages that use AlgorithmParameters
java.security Provides the classes and interfaces for the security framework. 
javax.crypto Provides the classes and interfaces for cryptographic operations. 
 

Uses of AlgorithmParameters in java.security
 

Methods in java.security that return AlgorithmParameters
 AlgorithmParameters AlgorithmParameterGenerator.generateParameters()
          Generates the parameters.
protected abstract  AlgorithmParameters AlgorithmParameterGeneratorSpi.engineGenerateParameters()
          Generates the parameters.
protected  AlgorithmParameters SignatureSpi.engineGetParameters()
          This method is overridden by providers to return the parameters used with this signature engine, or null if this signature engine does not use any parameters.
 AlgorithmParameters Signature.getParameters()
          Returns the parameters used with this signature object.
static AlgorithmParameters AlgorithmParameters.getInstance(String algorithm)
          Generates a parameter object for the specified algorithm.
static AlgorithmParameters AlgorithmParameters.getInstance(String algorithm, String 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 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.
 

Uses of AlgorithmParameters in javax.crypto
 

Methods in javax.crypto that return AlgorithmParameters
 AlgorithmParameters EncryptedPrivateKeyInfo.getAlgParameters()
          Returns the algorithm parameters used by the encryption algorithm.
protected abstract  AlgorithmParameters CipherSpi.engineGetParameters()
          Returns the parameters used with this cipher.
 AlgorithmParameters Cipher.getParameters()
          Returns the parameters used with this cipher.
 

Methods in javax.crypto with parameters of type AlgorithmParameters
protected abstract  void ExemptionMechanismSpi.engineInit(Key key, AlgorithmParameters params)
          Initializes this exemption mechanism with a key and a set of algorithm parameters.
 void ExemptionMechanism.init(Key key, AlgorithmParameters params)
          Initializes this exemption mechanism with a key and a set of algorithm parameters.
protected abstract  void CipherSpi.engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random)
          Initializes this cipher with a key, a set of algorithm parameters, and a source of randomness.
 void Cipher.init(int opmode, Key key, AlgorithmParameters params)
          Initializes this cipher with a key and a set of algorithm parameters.
 void Cipher.init(int opmode, Key key, AlgorithmParameters params, SecureRandom random)
          Initializes this cipher with a key, a set of algorithm parameters, and a source of randomness.
 

Constructors in javax.crypto with parameters of type AlgorithmParameters
EncryptedPrivateKeyInfo(AlgorithmParameters algParams, byte[] encryptedData)
          Constructs an EncryptedPrivateKeyInfo from the encryption algorithm parameters and the encrypted data.
 


JavaTM 2 Platform
Std. Ed. v1.4.2

Submit a bug or feature
For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.

Copyright © 2003, 2010 Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.