Uses of Class
java.security.AlgorithmParameters
-
Packages that use AlgorithmParameters 软件包 描述 java.security 提供安全框架的类和接口。javax.crypto 提供加密操作的类和接口。 -
-
Uses of AlgorithmParameters in java.security
Methods in java.security that return AlgorithmParameters 变量和类型 方法 描述 protected abstract AlgorithmParameters
AlgorithmParameterGeneratorSpi. engineGenerateParameters()
生成参数。protected AlgorithmParameters
SignatureSpi. engineGetParameters()
提供程序重写此方法以返回与此签名引擎一起使用的参数。AlgorithmParameters
AlgorithmParameterGenerator. generateParameters()
生成参数。static AlgorithmParameters
AlgorithmParameters. getInstance(String algorithm)
返回指定算法的参数对象。static AlgorithmParameters
AlgorithmParameters. getInstance(String algorithm, String provider)
返回指定算法的参数对象。static AlgorithmParameters
AlgorithmParameters. getInstance(String algorithm, Provider provider)
返回指定算法的参数对象。AlgorithmParameters
Signature. getParameters()
返回与此签名对象一起使用的参数。Methods in java.security with parameters of type AlgorithmParameters 变量和类型 方法 描述 boolean
AlgorithmConstraints. permits(Set<CryptoPrimitive> primitives, String algorithm, AlgorithmParameters parameters)
确定是否为算法授予指定加密基元的权限。boolean
AlgorithmConstraints. permits(Set<CryptoPrimitive> primitives, String algorithm, Key key, AlgorithmParameters parameters)
确定是否为指定的加密基元授予算法和相应密钥的权限。 -
Uses of AlgorithmParameters in javax.crypto
Methods in javax.crypto that return AlgorithmParameters 变量和类型 方法 描述 protected abstract AlgorithmParameters
CipherSpi. engineGetParameters()
返回此密码使用的参数。AlgorithmParameters
EncryptedPrivateKeyInfo. getAlgParameters()
返回加密算法使用的算法参数。AlgorithmParameters
Cipher. getParameters()
返回此密码使用的参数。Methods in javax.crypto with parameters of type AlgorithmParameters 变量和类型 方法 描述 protected abstract void
CipherSpi. engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random)
使用密钥,一组算法参数和随机源初始化此密码。protected abstract void
ExemptionMechanismSpi. engineInit(Key key, AlgorithmParameters params)
使用密钥和一组算法参数初始化此免除机制。void
Cipher. init(int opmode, Key key, AlgorithmParameters params)
使用密钥和一组算法参数初始化此密码。void
Cipher. init(int opmode, Key key, AlgorithmParameters params, SecureRandom random)
使用密钥,一组算法参数和随机源初始化此密码。void
ExemptionMechanism. init(Key key, AlgorithmParameters params)
使用密钥和一组算法参数初始化此免除机制。Constructors in javax.crypto with parameters of type AlgorithmParameters 构造器 描述 EncryptedPrivateKeyInfo(AlgorithmParameters algParams, byte[] encryptedData)
根据加密算法参数和加密数据构造一个EncryptedPrivateKeyInfo
。
-