Uses of Class
java.security.spec.RSAOtherPrimeInfo
-
Packages that use RSAOtherPrimeInfo 软件包 描述 java.security.interfaces 提供用于生成RSA实验室技术说明PKCS#1中定义的RSA(Rivest,Shamir和Adleman非对称密码算法)密钥以及NIST FIPS-186中定义的DSA(数字签名算法)密钥的接口。java.security.spec 提供关键规范和算法参数规范的类和接口。 -
-
Uses of RSAOtherPrimeInfo in java.security.interfaces
Methods in java.security.interfaces that return RSAOtherPrimeInfo Modifier and Type 方法 描述 RSAOtherPrimeInfo[]
RSAMultiPrimePrivateCrtKey. getOtherPrimeInfo()
如果只有两个素因子(p和q),则返回otherPrimeInfo或null。 -
Uses of RSAOtherPrimeInfo in java.security.spec
Methods in java.security.spec that return RSAOtherPrimeInfo Modifier and Type 方法 描述 RSAOtherPrimeInfo[]
RSAMultiPrimePrivateCrtKeySpec. getOtherPrimeInfo()
如果只有两个素因子(p和q),则返回otherPrimeInfo的副本或null。Constructors in java.security.spec with parameters of type RSAOtherPrimeInfo Constructor 描述 RSAMultiPrimePrivateCrtKeySpec(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger primeP, BigInteger primeQ, BigInteger primeExponentP, BigInteger primeExponentQ, BigInteger crtCoefficient, RSAOtherPrimeInfo[] otherPrimeInfo)
创建一个新的RSAMultiPrimePrivateCrtKeySpec
给定在PKCS#1 v2.1中定义的modulus,publicExponent,privateExponent,primeP,primeQ,primeExponentP,primeExponentQ,crtCoefficient和otherPrimeInfo。
-