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

/libcore/ojluni/src/main/java/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...]
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/interfaces/
H A DRSAMultiPrimePrivateCrtKeyImpl.java31 private BigInteger crtCoefficient = null; field in class:RSAMultiPrimePrivateCrtKeyImpl
51 crtCoefficient = crtCft;
56 return crtCoefficient;
/libcore/luni/src/test/java/tests/security/interfaces/
H A DRSAMultiPrimePrivateCrtKeyTest.java43 private final BigInteger crtCoefficient = BigInteger.ONE; field in class:RSAMultiPrimePrivateCrtKeyTest
67 primeP, primeQ, crtCoefficient, opi);
69 assertEquals(rsam.getCrtCoefficient(), crtCoefficient);
85 primeP, primeQ, crtCoefficient, null);
92 primeP, primeQ, crtCoefficient, opi);

Completed in 229 milliseconds