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

/libcore/luni/src/main/java/org/apache/harmony/security/x509/
H A DValidity.java32 * with Validity structure which is the part of X.509 certificate
39 * Validity ::= SEQUENCE {
45 public final class Validity { class
50 /** the ASN.1 encoded form of Validity */
53 public Validity(Date notBefore, Date notAfter) { method in class:Validity
73 * Returns ASN.1 encoded form of this X.509 Validity value.
83 * ASN.1 DER X.509 Validity encoder/decoder class.
90 return new Validity((Date) values[0], (Date) values[1]);
94 Validity validity = (Validity) objec
[all...]

Completed in 102 milliseconds