HomeSort by relevance Sort by last modified time
    Searched refs:notAfter (Results 1 - 14 of 14) sorted by null

  /external/openssl/crypto/x509v3/
v3_pku.c 79 ASN1_IMP_OPT(PKEY_USAGE_PERIOD, notAfter, ASN1_GENERALIZEDTIME, 1)
91 if(usage->notAfter) BIO_write(out, ", ", 2);
93 if(usage->notAfter) {
95 ASN1_GENERALIZEDTIME_print(out, usage->notAfter);
x509v3.h 160 ASN1_GENERALIZEDTIME *notAfter;
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
Validity.java 41 * notAfter Time
48 // the value of notAfter field of the structure
49 private final Date notAfter;
56 * @param notAfter: Date
58 public Validity(Date notBefore, Date notAfter) {
60 this.notAfter = notAfter;
72 * Returns the value of notAfter field of the structure.
73 * @return notAfter
76 return notAfter;
    [all...]
  /external/openssl/crypto/asn1/
x_val.c 66 ASN1_SIMPLE(X509_VAL, notAfter, ASN1_TIME)
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertImpl.java 78 private long notAfter;
152 notAfter = tbsCert.getValidity().getNotAfter().getTime();
158 if (time > notAfter) {
173 notAfter = tbsCert.getValidity().getNotAfter().getTime();
182 if (time > notAfter) {
185 + ", expiration time: " + new Date(notAfter));
265 notAfter = tbsCert.getValidity().getNotAfter().getTime();
278 notAfter = tbsCert.getValidity().getNotAfter().getTime();
280 return new Date(notAfter);
  /external/openssl/crypto/x509/
x509_set.c 130 in=x->cert_info->validity->notAfter;
136 M_ASN1_TIME_free(x->cert_info->validity->notAfter);
137 x->cert_info->validity->notAfter=in;
x509_r2x.c 99 if (X509_gmtime_adj(xi->validity->notAfter,(long)60*60*24*days) == NULL)
x509.h 157 ASN1_TIME *notAfter;
612 #define X509_get_notAfter(x) ((x)->cert_info->validity->notAfter)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
X509V2AttributeCertificate.java 42 private Date notAfter;
66 this.notAfter = cert.getAcinfo().getAttrCertValidityPeriod().getNotAfterTime().getDate();
102 return notAfter;
  /libcore/luni/src/main/java/java/security/cert/
X509CertSelector.java     [all...]
  /libcore/luni/src/test/java/tests/security/cert/
X509CertSelectorTest.java     [all...]
  /external/chromium/net/base/
x509_certificate_nss.cc 472 ParseDate(&cert_handle_->validity.notAfter, &valid_expiry_);
  /external/openssl/include/openssl/
x509.h 157 ASN1_TIME *notAfter;
612 #define X509_get_notAfter(x) ((x)->cert_info->validity->notAfter)
    [all...]
x509v3.h 160 ASN1_GENERALIZEDTIME *notAfter;

Completed in 225 milliseconds