HomeSort by relevance Sort by last modified time
    Searched full:notafter (Results 1 - 25 of 33) sorted by null

1 2

  /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...]
PrivateKeyUsagePeriod.java 43 * notAfter [1] GeneralizedTime OPTIONAL
87 * Returns the value of notAfter field of the structure.
88 * @return notAfter
  /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);
  /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;
  /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_txt.c 104 return("format error in certificate's notAfter field");
x509.h 157 ASN1_TIME *notAfter;
612 #define X509_get_notAfter(x) ((x)->cert_info->validity->notAfter)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Choice.java 54 * notAfter Time
89 * private Date notAfter; // choice as Date
109 * values[1] = validity.notAfter;
183 * private Time notAfter; // now it is a Time!!!
203 * values[1] = validity.notAfter;
  /external/openssl/android.testssl/
server2.pem 35 notAfter =970412210656Z
189 notAfter =991103185834Z
208 notAfter =991231235417Z
  /external/openssl/apps/
server.pem 28 notAfter =970412210656Z
182 notAfter =991103185834Z
201 notAfter =991231235417Z
server2.pem 35 notAfter =970412210656Z
189 notAfter =991103185834Z
208 notAfter =991231235417Z
x509.c 114 " -enddate - notAfter field\n",
916 BIO_puts(STDout,"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 79 private volatile long notAfter = -1;
257 long result = notAfter;
259 notAfter = result = tbsCert.getValidity().getNotAfter().getTime();
  /libcore/luni/src/main/java/java/security/cert/
X509Certificate.java 87 * notAfter CertificateValidityDate }
262 * Returns the {@code notAfter} date of the validity period of the
X509CertSelector.java     [all...]
  /libcore/luni/src/main/java/javax/security/cert/
X509Certificate.java 236 * notAfter CertificateValidityDate }
360 * Returns the {@code notAfter} date of the validity period of the
  /external/openssl/crypto/pkcs7/
dec.c 241 BIO_printf(bio_err,"notAfter=");
verify.c 256 BIO_printf(bio_err,"notAfter=");
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
TestUtils.java 332 * - notAfter: 01 Jan 2000 00:00:00<br>
367 // notAfter: UTCTime
412 * - notAfter: 01 Jan 2000 00:00:00<br>
449 // notAfter: UTCTime
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
X509CertSelectorTest.java     [all...]
  /external/wpa_supplicant/
x509v3.c 632 * notAfter Time
673 wpa_hexdump_ascii(MSG_DEBUG, "X509: Failed to parse notAfter "
678 wpa_printf(MSG_MSGDUMP, "X509: Validity: notBefore: %lu notAfter: %lu",
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
x509v3.c 632 * notAfter Time
673 wpa_hexdump_ascii(MSG_DEBUG, "X509: Failed to parse notAfter "
678 wpa_printf(MSG_MSGDUMP, "X509: Validity: notBefore: %lu notAfter: %lu",
    [all...]
  /external/chromium/net/base/
x509_certificate_nss.cc 472 ParseDate(&cert_handle_->validity.notAfter, &valid_expiry_);

Completed in 567 milliseconds

1 2