Home
last modified time | relevance | path

Searched refs:maxCRL (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/security/cert/
DX509CRLSelector.java83 private BigInteger maxCRL; field in X509CRLSelector
402 public void setMaxCRLNumber(BigInteger maxCRL) { in setMaxCRLNumber() argument
403 this.maxCRL = maxCRL; in setMaxCRLNumber()
525 return maxCRL; in getMaxCRL()
579 if (maxCRL != null) in toString()
580 sb.append(" maxCRLNumber: " + maxCRL + "\n"); in toString()
621 if ((minCRL != null) || (maxCRL != null)) { in match()
655 if (maxCRL != null) { in match()
656 if (crlNum.compareTo(maxCRL) > 0) { in match()
/libcore/luni/src/test/java/tests/security/cert/
DX509CRLSelector2Test.java264 BigInteger maxCRL = new BigInteger("10000"); in testSetMaxCRLNumberLjava_math_BigInteger() local
265 TestCRL crl = new TestCRL(maxCRL); in testSetMaxCRLNumberLjava_math_BigInteger()
270 selector.setMaxCRLNumber(maxCRL); in testSetMaxCRLNumberLjava_math_BigInteger()
403 BigInteger maxCRL = new BigInteger("10000"); in testGetMaxCRL() local
404 selector.setMaxCRLNumber(maxCRL); in testGetMaxCRL()
405 assertTrue("The result should be equal to specified.", maxCRL in testGetMaxCRL()
464 BigInteger maxCRL = new BigInteger("10000"); in testClone() local
470 selector.setMaxCRLNumber(maxCRL); in testClone()
490 BigInteger maxCRL = new BigInteger("10000"); in testToString() local
496 selector.setMaxCRLNumber(maxCRL); in testToString()