Home | History | Annotate | Download | only in spec

Lines Matching refs:modulus

30     // Modulus
31 private final BigInteger modulus;
36 * Creates a new {@code RSAPrivateKeySpec} with the specified modulus and
39 * @param modulus
40 * the modulus {@code n}.
44 public RSAPrivateKeySpec(BigInteger modulus, BigInteger privateExponent) {
45 this.modulus = modulus;
50 * Returns the modulus {@code n}.
52 * @return the modulus {@code n}.
55 return modulus;