Home | History | Annotate | Download | only in spec

Lines Matching refs:rp

65          * The <code>rp</code> parameter for <code>ECFieldF2m</code>
68 final BigInteger rp;
86 * @param rp
91 final BigInteger rp,
95 this.rp = rp;
243 * using valid parameters m and rp. ks represents trinomial basis.
279 * Tests for constructor <code>ECFieldF2m(int m, BigInteger rp)</code><br>
282 * using valid parameters m and rp.
285 * using valid parameters m and rp.
289 * Assertion: NullPointerException if rp is null.
291 * Assertion: IllegalArgumentException if rp is invalid.
298 new ECFieldF2m(tp.m, tp.rp);
412 * Assertion: trinomial basis - objects equal if their m, and rp
424 * Assertion: pentanomial basis - objects equal if their m, and rp
438 * Assertion: objects equal if their m, and rp are mutually equal.
524 BigInteger rp = BigInteger.valueOf(0L).setBit(0).setBit(1).setBit(2).
526 assertTrue(new ECFieldF2m(2000, rp).getReductionPolynomial().equals(rp));