Searched defs:rp (Results 1 - 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/security/spec/
H A DECFieldF2m.java44 private BigInteger rp; field in class:ECFieldF2m
59 this.rp = null;
67 * on {@code rp} whose i-th bit corresponds to
77 * @param rp the BigInteger whose i-th bit corresponds to
79 * @exception NullPointerException if {@code rp} is null.
81 * is not positive, or {@code rp} does not represent
84 public ECFieldF2m(int m, BigInteger rp) { argument
85 // check m and rp
87 this.rp = rp;
[all...]
/libcore/luni/src/test/java/tests/security/spec/
H A DECFieldF2mTest.java65 * The <code>rp</code> parameter for <code>ECFieldF2m</code>
68 final BigInteger rp; field in class:ECFieldF2mTest.ECFieldF2mDomainParams
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
90 ECFieldF2mDomainParams(final int m, final BigInteger rp, final int[] ks, final Exception expectedException) argument
[all...]
/libcore/luni/src/test/java/tests/java/sql/
H A DDatabaseMetaDataTest.java2321 * @param rp
2325 private boolean doesMatch(String pattern, int pp, String result, int rp) { argument
2328 if (pp == pattern.length() && rp == result.length()) return true;
2338 if (rp == result.length()) return false;
2341 rp++;
2354 for (int sp = rp; sp < result.length(); sp++) {
2369 if (rp == result.length()) return false;
2372 if (pc != result.charAt(rp)) {
2377 rp++;
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DRevocationChecker.java102 RevocationProperties rp = getRevocationProperties();
104 responderURI = (uri == null) ? toURI(rp.ocspUrl) : uri;
107 ? getResponderCert(rp, params.trustAnchors(),
127 mode = (rp.ocspEnabled) ? Mode.PREFER_OCSP : Mode.ONLY_CRLS;
128 onlyEE = rp.onlyEE;
142 crlDP = rp.crlDPEnabled;
184 RevocationProperties rp = new RevocationProperties();
187 rp.onlyEE = onlyEE != null
190 rp.ocspEnabled = ocspEnabled != null
192 rp
207 getResponderCert(RevocationProperties rp, Set<TrustAnchor> anchors, List<CertStore> stores) argument
[all...]

Completed in 112 milliseconds