Searched refs:privateExponent (Results 1 – 6 of 6) sorted by relevance
/libcore/ojluni/src/main/java/java/security/spec/ |
D | RSAPrivateKeySpec.java | 48 private final BigInteger privateExponent; field in RSAPrivateKeySpec 57 public RSAPrivateKeySpec(BigInteger modulus, BigInteger privateExponent) { in RSAPrivateKeySpec() argument 58 this(modulus, privateExponent, null); in RSAPrivateKeySpec() 69 public RSAPrivateKeySpec(BigInteger modulus, BigInteger privateExponent, in RSAPrivateKeySpec() argument 72 this.privateExponent = privateExponent; in RSAPrivateKeySpec() 91 return this.privateExponent; in getPrivateExponent()
|
D | RSAMultiPrimePrivateCrtKeySpec.java | 87 BigInteger privateExponent, in RSAMultiPrimePrivateCrtKeySpec() argument 94 this(modulus, publicExponent, privateExponent, primeP, primeQ, in RSAMultiPrimePrivateCrtKeySpec() 129 BigInteger privateExponent, in RSAMultiPrimePrivateCrtKeySpec() argument 137 super(modulus, privateExponent, keyParams); in RSAMultiPrimePrivateCrtKeySpec() 140 Objects.requireNonNull(privateExponent, in RSAMultiPrimePrivateCrtKeySpec()
|
D | RSAPrivateCrtKeySpec.java | 71 BigInteger privateExponent, in RSAPrivateCrtKeySpec() argument 77 this(modulus, publicExponent, privateExponent, primeP, primeQ, in RSAPrivateCrtKeySpec() 99 BigInteger privateExponent, in RSAPrivateCrtKeySpec() argument 106 super(modulus, privateExponent, keyParams); in RSAPrivateCrtKeySpec()
|
/libcore/ojluni/annotations/flagged_api/java/security/spec/ |
D | RSAPrivateKeySpec.annotated.java | 32 public RSAPrivateKeySpec(java.math.BigInteger modulus, java.math.BigInteger privateExponent) { thro… in RSAPrivateKeySpec() argument 35 public RSAPrivateKeySpec(java.math.BigInteger modulus, java.math.BigInteger privateExponent, java.s… in RSAPrivateKeySpec() argument
|
D | RSAPrivateCrtKeySpec.annotated.java | 32 …r modulus, java.math.BigInteger publicExponent, java.math.BigInteger privateExponent, java.math.Bi… in RSAPrivateCrtKeySpec() argument 35 …r modulus, java.math.BigInteger publicExponent, java.math.BigInteger privateExponent, java.math.Bi… in RSAPrivateCrtKeySpec() argument
|
D | RSAMultiPrimePrivateCrtKeySpec.annotated.java | 32 …r modulus, java.math.BigInteger publicExponent, java.math.BigInteger privateExponent, java.math.Bi… in RSAMultiPrimePrivateCrtKeySpec() argument 35 …r modulus, java.math.BigInteger publicExponent, java.math.BigInteger privateExponent, java.math.Bi… in RSAMultiPrimePrivateCrtKeySpec() argument
|