Uses of Class
java.security.spec.RSAOtherPrimeInfo
| Package | Description |
|---|---|
| java.security.interfaces |
This package provides the interfaces needed to generate:
(1) Keys for the RSA asymmetric encryption algorithm using the PKCS#1 standard;
(2) Keys for the Digital Signature Algorithm (DSA) specified by FIPS-186;
(3) Keys for a generic Elliptic Curve asymmetric encryption algorithm.
|
| java.security.spec |
This package provides the classes and interfaces needed to specify keys and parameters for
encryption and signing algorithms.
|
-
Uses of RSAOtherPrimeInfo in java.security.interfaces
Methods in java.security.interfaces that return RSAOtherPrimeInfo Modifier and Type Method Description RSAOtherPrimeInfo[]RSAMultiPrimePrivateCrtKey. getOtherPrimeInfo()Returns the information for the additional primes. -
Uses of RSAOtherPrimeInfo in java.security.spec
Methods in java.security.spec that return RSAOtherPrimeInfo Modifier and Type Method Description RSAOtherPrimeInfo[]RSAMultiPrimePrivateCrtKeySpec. getOtherPrimeInfo()Returns the information for the additional primes.Constructors in java.security.spec with parameters of type RSAOtherPrimeInfo Constructor Description RSAMultiPrimePrivateCrtKeySpec(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger primeP, BigInteger primeQ, BigInteger primeExponentP, BigInteger primeExponentQ, BigInteger crtCoefficient, RSAOtherPrimeInfo[] otherPrimeInfo)Creates a newRSAMultiPrimePrivateCrtKeySpecwith the specified modulus, public exponent, private exponent, prime factors, prime exponents, crt coefficient, and additional primes.