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

/libcore/luni/src/main/java/org/apache/harmony/security/x509/
H A DBasicConstraints.java38 * pathLenConstraint INTEGER (0..MAX) OPTIONAL
47 private int pathLenConstraint = Integer.MAX_VALUE; field in class:BasicConstraints
57 pathLenConstraint = new BigInteger((byte[]) values[1]).intValue();
66 return pathLenConstraint;
74 encoding = ASN1.encode(new Object[]{ca, BigInteger.valueOf(pathLenConstraint) });
82 .append("\n ").append(prefix).append("pathLenConstraint: ")
83 .append(pathLenConstraint).append('\n').append(prefix)

Completed in 127 milliseconds