Searched refs:otherPrimeInfo (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/spec/
H A DRSAMultiPrimePrivateCrtKeySpec.java57 private final RSAOtherPrimeInfo otherPrimeInfo[]; field in class:RSAMultiPrimePrivateCrtKeySpec
63 * crtCoefficient, and otherPrimeInfo as defined in PKCS#1 v2.1.
65 * <p>Note that the contents of <code>otherPrimeInfo</code>
78 * @param otherPrimeInfo triplets of the rest of primes, null can be
87 * <code>otherPrimeInfo</code> is specified.
97 RSAOtherPrimeInfo[] otherPrimeInfo) {
137 if (otherPrimeInfo == null) {
138 this.otherPrimeInfo = null;
139 } else if (otherPrimeInfo.length == 0) {
140 throw new IllegalArgumentException("the otherPrimeInfo "
89 RSAMultiPrimePrivateCrtKeySpec(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger primeP, BigInteger primeQ, BigInteger primeExponentP, BigInteger primeExponentQ, BigInteger crtCoefficient, RSAOtherPrimeInfo[] otherPrimeInfo) argument
[all...]

Completed in 22 milliseconds