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

/openjdk7/jdk/src/share/classes/java/security/spec/
H A DRSAOtherPrimeInfo.java57 private BigInteger crtCoefficient; field in class:RSAOtherPrimeInfo
63 * crtCoefficient as defined in PKCS#1.
67 * @param crtCoefficient the Chinese Remainder Theorem
71 * <code>crtCoefficient</code>, is null.
76 BigInteger crtCoefficient) {
85 if (crtCoefficient == null) {
86 throw new NullPointerException("the crtCoefficient parameter " +
91 this.crtCoefficient = crtCoefficient;
113 * Returns the prime's crtCoefficient
74 RSAOtherPrimeInfo(BigInteger prime, BigInteger primeExponent, BigInteger crtCoefficient) argument
[all...]
H A DRSAPrivateCrtKeySpec.java53 private final BigInteger crtCoefficient; field in class:RSAPrivateCrtKeySpec
61 * crtCoefficient as defined in PKCS#1.
70 * @param crtCoefficient the Chinese Remainder Theorem
80 BigInteger crtCoefficient) {
87 this.crtCoefficient = crtCoefficient;
136 * Returns the crtCoefficient.
138 * @return the crtCoefficient
141 return this.crtCoefficient;
73 RSAPrivateCrtKeySpec(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger primeP, BigInteger primeQ, BigInteger primeExponentP, BigInteger primeExponentQ, BigInteger crtCoefficient) argument
H A DRSAMultiPrimePrivateCrtKeySpec.java56 private final BigInteger crtCoefficient; field in class:RSAMultiPrimePrivateCrtKeySpec
63 * crtCoefficient, and otherPrimeInfo as defined in PKCS#1 v2.1.
76 * @param crtCoefficient the Chinese Remainder Theorem
85 * <code>crtCoefficient</code>, is null.
96 BigInteger crtCoefficient,
127 if (crtCoefficient == null) {
128 throw new NullPointerException("the crtCoefficient parameter " +
136 this.crtCoefficient = crtCoefficient;
193 * Returns the crtCoefficient
89 RSAMultiPrimePrivateCrtKeySpec(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger primeP, BigInteger primeQ, BigInteger primeExponentP, BigInteger primeExponentQ, BigInteger crtCoefficient, RSAOtherPrimeInfo[] otherPrimeInfo) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DKeyStore.java926 byte[] crtCoefficient) throws InvalidKeyException;
917 generatePrivateKeyBlob( int keyBitLength, byte[] modulus, byte[] publicExponent, byte[] privateExponent, byte[] primeP, byte[] primeQ, byte[] exponentP, byte[] exponentQ, byte[] crtCoefficient) argument

Completed in 33 milliseconds