Uses of Class
java.security.AlgorithmParameters
| Package | Description |
|---|---|
| java.security |
Extensible cryptographic service provider infrastructure (SPI) for using
and defining services such as
Certificates,
Keys, KeyStores, MessageDigests, and Signatures. |
| javax.crypto |
This package provides the classes and interfaces for cryptographic applications implementing algorithms for encryption, decryption, or
key agreement.
|
| org.apache.harmony.crypto.internal | |
| org.bouncycastle.jcajce | |
| org.bouncycastle.jcajce.provider.asymmetric.dh | |
| org.bouncycastle.jcajce.provider.asymmetric.dsa | |
| org.bouncycastle.jcajce.provider.asymmetric.rsa | |
| org.bouncycastle.jcajce.provider.asymmetric.util | |
| org.bouncycastle.jcajce.provider.symmetric | |
| org.bouncycastle.jcajce.provider.symmetric.util | |
| org.bouncycastle.jce.provider | |
| org.conscrypt |
-
Uses of AlgorithmParameters in java.security
Methods in java.security that return AlgorithmParameters Modifier and Type Method Description protected abstract AlgorithmParametersAlgorithmParameterGeneratorSpi. engineGenerateParameters()Computes and returnsAlgorithmParametersfor this generator's algorithm.protected AlgorithmParametersSignatureSpi. engineGetParameters()Returns theAlgorithmParametersof thisSignatureSpiinstance.AlgorithmParametersAlgorithmParameterGenerator. generateParameters()Computes and returnsAlgorithmParametersfor this generator's algorithm.static AlgorithmParametersAlgorithmParameters. getInstance(String algorithm)Returns a new instance ofAlgorithmParametersfor the specified algorithm.static AlgorithmParametersAlgorithmParameters. getInstance(String algorithm, String provider)Returns a new instance ofAlgorithmParametersfrom the specified provider for the specified algorithm.static AlgorithmParametersAlgorithmParameters. getInstance(String algorithm, Provider provider)Returns a new instance ofAlgorithmParametersfrom the specified provider for the specified algorithm.AlgorithmParametersSignature. getParameters()Returns theAlgorithmParametersof thisSignatureinstance. -
Uses of AlgorithmParameters in javax.crypto
Methods in javax.crypto that return AlgorithmParameters Modifier and Type Method Description protected abstract AlgorithmParametersCipherSpi. engineGetParameters()Returns the parameters that where used to create this cipher instance.AlgorithmParametersEncryptedPrivateKeyInfo. getAlgParameters()Returns the parameters used by the encryption algorithm.AlgorithmParametersCipher. getParameters()Returns the parameters that where used to create this cipher instance.Methods in javax.crypto with parameters of type AlgorithmParameters Modifier and Type Method Description protected abstract voidCipherSpi. engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random)Initializes this cipher instance with the specified key, algorithm parameters and a source of randomness.protected abstract voidExemptionMechanismSpi. engineInit(Key key, AlgorithmParameters params)Initializes thisExemptionMechanisminstance with the specified key and algorithm parameters.voidCipher. init(int opmode, Key key, AlgorithmParameters params)Initializes this cipher instance with the specified key and algorithm parameters.voidCipher. init(int opmode, Key key, AlgorithmParameters params, SecureRandom random)Initializes this cipher instance with the specified key, algorithm parameters and a source of randomness.voidExemptionMechanism. init(Key key, AlgorithmParameters param)Initializes thisExemptionMechanisminstance with the specified key and algorithm parameters.Constructors in javax.crypto with parameters of type AlgorithmParameters Constructor Description EncryptedPrivateKeyInfo(AlgorithmParameters algParams, byte[] encryptedData)Creates anEncryptedPrivateKeyInfoinstance from the encryption algorithm parameters an its encrypted data. -
Uses of AlgorithmParameters in org.apache.harmony.crypto.internal
Methods in org.apache.harmony.crypto.internal that return AlgorithmParameters Modifier and Type Method Description AlgorithmParametersNullCipherSpi. engineGetParameters()Methods in org.apache.harmony.crypto.internal with parameters of type AlgorithmParameters Modifier and Type Method Description voidNullCipherSpi. engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random) -
Uses of AlgorithmParameters in org.bouncycastle.jcajce
Methods in org.bouncycastle.jcajce that return AlgorithmParameters Modifier and Type Method Description AlgorithmParametersDefaultJcaJceHelper. createAlgorithmParameters(String algorithm)AlgorithmParametersJcaJceHelper. createAlgorithmParameters(String algorithm)AlgorithmParametersNamedJcaJceHelper. createAlgorithmParameters(String algorithm)AlgorithmParametersProviderJcaJceHelper. createAlgorithmParameters(String algorithm) -
Uses of AlgorithmParameters in org.bouncycastle.jcajce.provider.asymmetric.dh
Methods in org.bouncycastle.jcajce.provider.asymmetric.dh that return AlgorithmParameters Modifier and Type Method Description protected AlgorithmParametersAlgorithmParameterGeneratorSpi. engineGenerateParameters() -
Uses of AlgorithmParameters in org.bouncycastle.jcajce.provider.asymmetric.dsa
Methods in org.bouncycastle.jcajce.provider.asymmetric.dsa that return AlgorithmParameters Modifier and Type Method Description protected AlgorithmParametersAlgorithmParameterGeneratorSpi. engineGenerateParameters() -
Uses of AlgorithmParameters in org.bouncycastle.jcajce.provider.asymmetric.rsa
Methods in org.bouncycastle.jcajce.provider.asymmetric.rsa that return AlgorithmParameters Modifier and Type Method Description protected AlgorithmParametersCipherSpi. engineGetParameters()protected AlgorithmParametersDigestSignatureSpi. engineGetParameters()Methods in org.bouncycastle.jcajce.provider.asymmetric.rsa with parameters of type AlgorithmParameters Modifier and Type Method Description protected voidCipherSpi. engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random) -
Uses of AlgorithmParameters in org.bouncycastle.jcajce.provider.asymmetric.util
Fields in org.bouncycastle.jcajce.provider.asymmetric.util declared as AlgorithmParameters Modifier and Type Field Description protected AlgorithmParametersBaseCipherSpi. engineParamsMethods in org.bouncycastle.jcajce.provider.asymmetric.util that return AlgorithmParameters Modifier and Type Method Description protected AlgorithmParametersBaseCipherSpi. engineGetParameters() -
Uses of AlgorithmParameters in org.bouncycastle.jcajce.provider.symmetric
Methods in org.bouncycastle.jcajce.provider.symmetric that return AlgorithmParameters Modifier and Type Method Description protected AlgorithmParametersDES.AlgParamGen. engineGenerateParameters() -
Uses of AlgorithmParameters in org.bouncycastle.jcajce.provider.symmetric.util
Fields in org.bouncycastle.jcajce.provider.symmetric.util declared as AlgorithmParameters Modifier and Type Field Description protected AlgorithmParametersBaseWrapCipher. engineParamsMethods in org.bouncycastle.jcajce.provider.symmetric.util that return AlgorithmParameters Modifier and Type Method Description protected AlgorithmParametersBaseBlockCipher. engineGetParameters()protected AlgorithmParametersBaseStreamCipher. engineGetParameters()protected AlgorithmParametersBaseWrapCipher. engineGetParameters()Methods in org.bouncycastle.jcajce.provider.symmetric.util with parameters of type AlgorithmParameters Modifier and Type Method Description protected voidBaseBlockCipher. engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random)protected voidBaseStreamCipher. engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random)protected voidBaseWrapCipher. engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random) -
Uses of AlgorithmParameters in org.bouncycastle.jce.provider
Methods in org.bouncycastle.jce.provider that return AlgorithmParameters Modifier and Type Method Description protected AlgorithmParametersJCEStreamCipher. engineGetParameters()Methods in org.bouncycastle.jce.provider with parameters of type AlgorithmParameters Modifier and Type Method Description protected voidJCEStreamCipher. engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random) -
Uses of AlgorithmParameters in org.conscrypt
Methods in org.conscrypt that return AlgorithmParameters Modifier and Type Method Description protected AlgorithmParametersOpenSSLCipher. engineGetParameters()protected AlgorithmParametersOpenSSLCipherRSA. engineGetParameters()Methods in org.conscrypt with parameters of type AlgorithmParameters Modifier and Type Method Description protected voidOpenSSLCipher. engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random)protected voidOpenSSLCipherRSA. engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random)