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

/libcore/ojluni/src/main/java/java/security/spec/
H A DRSAPublicKeySpec.java47 private BigInteger publicExponent; field in class:RSAPublicKeySpec
53 * @param publicExponent the public exponent
55 public RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent) { argument
57 this.publicExponent = publicExponent;
75 return this.publicExponent;
H A DRSAKeyGenParameterSpec.java45 private BigInteger publicExponent; field in class:RSAKeyGenParameterSpec
62 * @param publicExponent the public exponent
64 public RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent) { argument
66 this.publicExponent = publicExponent;
84 return publicExponent;
H A DRSAPrivateCrtKeySpec.java48 private final BigInteger publicExponent; field in class:RSAPrivateCrtKeySpec
59 * given the modulus, publicExponent, privateExponent,
64 * @param publicExponent the public exponent e
74 BigInteger publicExponent,
82 this.publicExponent = publicExponent;
96 return this.publicExponent;
73 RSAPrivateCrtKeySpec(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger primeP, BigInteger primeQ, BigInteger primeExponentP, BigInteger primeExponentQ, BigInteger crtCoefficient) argument
H A DRSAMultiPrimePrivateCrtKeySpec.java51 private final BigInteger publicExponent; field in class:RSAMultiPrimePrivateCrtKeySpec
61 * given the modulus, publicExponent, privateExponent,
70 * @param publicExponent the public exponent e.
82 * {@code publicExponent}, {@code privateExponent},
90 BigInteger publicExponent,
103 if (publicExponent == null) {
104 throw new NullPointerException("the publicExponent parameter " +
131 this.publicExponent = publicExponent;
153 return this.publicExponent;
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.java32 private BigInteger publicExponent = null; field in class:RSAMultiPrimePrivateCrtKeyImpl
46 publicExponent = publicExp;
74 return publicExponent;
/libcore/luni/src/test/java/tests/security/interfaces/
H A DRSAMultiPrimePrivateCrtKeyTest.java38 private final BigInteger publicExponent = BigInteger.ONE; field in class:RSAMultiPrimePrivateCrtKeyTest
66 RSAMulti rsam = new RSAMulti(publicExponent, primeExponentP, primeExponentQ,
74 assertEquals(rsam.getPublicExponent(), publicExponent);
84 RSAMulti rsam = new RSAMulti(publicExponent, primeExponentP, primeExponentQ,
91 rsam = new RSAMulti(publicExponent, primeExponentP, primeExponentQ,

Completed in 78 milliseconds