Home
last modified time | relevance | path

Searched defs:publicExponent (Results 1 – 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/java/security/spec/
DRSAPublicKeySpec.java48 private final BigInteger publicExponent; field in RSAPublicKeySpec
57 public RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent) { in RSAPublicKeySpec()
69 public RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent, in RSAPublicKeySpec()
DRSAKeyGenParameterSpec.java45 private BigInteger publicExponent; field in RSAKeyGenParameterSpec
65 public RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent) { in RSAKeyGenParameterSpec()
78 public RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent, in RSAKeyGenParameterSpec()
DRSAPrivateCrtKeySpec.java49 private final BigInteger publicExponent; field in RSAPrivateCrtKeySpec
70 BigInteger publicExponent, in RSAPrivateCrtKeySpec()
98 BigInteger publicExponent, in RSAPrivateCrtKeySpec()
DRSAMultiPrimePrivateCrtKeySpec.java53 private final BigInteger publicExponent; field in RSAMultiPrimePrivateCrtKeySpec
86 BigInteger publicExponent, in RSAMultiPrimePrivateCrtKeySpec()
128 BigInteger publicExponent, in RSAMultiPrimePrivateCrtKeySpec()
/libcore/ojluni/annotations/flagged_api/java/security/spec/
DRSAPublicKeySpec.annotated.java32 public RSAPublicKeySpec(java.math.BigInteger modulus, java.math.BigInteger publicExponent) { throw … in RSAPublicKeySpec()
35 public RSAPublicKeySpec(java.math.BigInteger modulus, java.math.BigInteger publicExponent, java.sec… in RSAPublicKeySpec()
DRSAKeyGenParameterSpec.annotated.java32 public RSAKeyGenParameterSpec(int keysize, java.math.BigInteger publicExponent) { throw new Runtime… in RSAKeyGenParameterSpec()
35 public RSAKeyGenParameterSpec(int keysize, java.math.BigInteger publicExponent, java.security.spec.… in RSAKeyGenParameterSpec()
DRSAPrivateCrtKeySpec.annotated.java32 public RSAPrivateCrtKeySpec(java.math.BigInteger modulus, java.math.BigInteger publicExponent, java… in RSAPrivateCrtKeySpec()
35 public RSAPrivateCrtKeySpec(java.math.BigInteger modulus, java.math.BigInteger publicExponent, java… in RSAPrivateCrtKeySpec()
DRSAMultiPrimePrivateCrtKeySpec.annotated.java32 …AMultiPrimePrivateCrtKeySpec(java.math.BigInteger modulus, java.math.BigInteger publicExponent, ja… in RSAMultiPrimePrivateCrtKeySpec()
35 …AMultiPrimePrivateCrtKeySpec(java.math.BigInteger modulus, java.math.BigInteger publicExponent, ja… in RSAMultiPrimePrivateCrtKeySpec()
/libcore/luni/src/test/java/tests/security/interfaces/
DRSAMultiPrimePrivateCrtKeyTest.java38 private final BigInteger publicExponent = BigInteger.ONE; field in RSAMultiPrimePrivateCrtKeyTest
74 assertEquals(rsam.getPublicExponent(), publicExponent); in test_RSAMultiPrimePrivateCrtKey() local
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/interfaces/
DRSAMultiPrimePrivateCrtKeyImpl.java32 private BigInteger publicExponent = null; field in RSAMultiPrimePrivateCrtKeyImpl