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

/openjdk7/jdk/src/share/classes/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>, <code>privateExponent</code>,
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...]
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAKeyPairGenerator.java48 private BigInteger publicExponent; field in class:RSAKeyPairGenerator
75 this.publicExponent = RSAKeyGenParameterSpec.F4;
114 this.publicExponent = tmpPublicExponent;
126 BigInteger e = publicExponent;
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DRSASignature.java517 int keyBitLength, byte[] modulus, byte[] publicExponent)
516 generatePublicKeyBlob( int keyBitLength, byte[] modulus, byte[] publicExponent) argument
H A DKeyStore.java920 byte[] publicExponent,
917 generatePrivateKeyBlob( int keyBitLength, byte[] modulus, byte[] publicExponent, byte[] privateExponent, byte[] primeP, byte[] primeQ, byte[] exponentP, byte[] exponentQ, byte[] crtCoefficient) argument

Completed in 36 milliseconds