Home | History | Annotate | Download | only in spec

Lines Matching refs:prime

31  * This class represents the triplet (prime, exponent, and coefficient)
37 * prime INTEGER,
55 private BigInteger prime;
62 * given the prime, primeExponent, and
65 * @param prime the prime factor of n.
70 * <code>prime</code>, <code>primeExponent</code>,
74 public RSAOtherPrimeInfo(BigInteger prime,
77 if (prime == null) {
78 throw new NullPointerException("the prime parameter must be " +
89 this.prime = prime;
95 * Returns the prime.
97 * @return the prime.
100 return this.prime;
104 * Returns the prime's exponent.
113 * Returns the prime's crtCoefficient.