Home | History | Annotate | Download | only in cert

Lines Matching defs:minCRL

82     private BigInteger minCRL;
388 * @param minCRL the minimum CRL number accepted (or {@code null})
390 public void setMinCRLNumber(BigInteger minCRL) {
391 this.minCRL = minCRL;
513 return minCRL;
577 if (minCRL != null)
578 sb.append(" minCRLNumber: " + minCRL + "\n");
621 if ((minCRL != null) || (maxCRL != null)) {
645 if (minCRL != null) {
646 if (crlNum.compareTo(minCRL) < 0) {