Home
last modified time | relevance | path

Searched defs:modulus (Results 1 – 9 of 9) sorted by relevance

/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
DOpenSSLRSAKeyFactory.java99 BigInteger modulus = rsaKey.getModulus(); in engineGetKeySpec() local
111 BigInteger modulus = rsaKey.getModulus(); in engineGetKeySpec() local
115 BigInteger modulus = rsaKey.getModulus(); in engineGetKeySpec() local
135 BigInteger modulus = rsaKey.getModulus(); in engineGetKeySpec() local
139 BigInteger modulus = rsaKey.getModulus(); in engineGetKeySpec() local
171 BigInteger modulus = rsaKey.getModulus(); in engineTranslateKey() local
189 BigInteger modulus = rsaKey.getModulus(); in engineTranslateKey() local
DOpenSSLRSAPrivateKey.java32 private BigInteger modulus; field in OpenSSLRSAPrivateKey
55 final BigInteger modulus = rsaKeySpec.getModulus(); in init() local
88 final BigInteger modulus = rsaPrivateKey.getModulus(); in getInstance() local
DOpenSSLRSAPrivateCrtKey.java52 BigInteger modulus = rsaKeySpec.getModulus(); in init() local
90 BigInteger modulus = rsaPrivateKey.getModulus(); in getInstance() local
DOpenSSLRSAPublicKey.java32 private BigInteger modulus; field in OpenSSLRSAPublicKey
/libcore/luni/src/main/java/java/security/spec/
DRSAPrivateKeySpec.java31 private final BigInteger modulus; field in RSAPrivateKeySpec
44 public RSAPrivateKeySpec(BigInteger modulus, BigInteger privateExponent) { in RSAPrivateKeySpec()
DRSAPublicKeySpec.java31 private final BigInteger modulus; field in RSAPublicKeySpec
44 public RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent) { in RSAPublicKeySpec()
DRSAPrivateCrtKeySpec.java66 public RSAPrivateCrtKeySpec(BigInteger modulus, in RSAPrivateCrtKeySpec()
DRSAMultiPrimePrivateCrtKeySpec.java74 BigInteger modulus, in RSAMultiPrimePrivateCrtKeySpec()
/libcore/luni/src/main/java/java/math/
DBigInt.java356 static BigInt modulus(BigInt a, BigInt m) { in modulus() method in BigInt