/external/chromium_org/third_party/openssl/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;
|
/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);
|
/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; 53 public Validity(Date notBefore, Date notAfter) { 55 this.notAfter = notAfter; 66 * Returns the value of notAfter field of the structure. 69 return notAfter; 96 values[1] = validity.notAfter;
|
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/ |
x_val.c | 66 ASN1_SIMPLE(X509_VAL, notAfter, ASN1_TIME)
|
/external/openssl/crypto/asn1/ |
x_val.c | 66 ASN1_SIMPLE(X509_VAL, notAfter, ASN1_TIME)
|
/external/chromium_org/third_party/openssl/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; 613 #define X509_get_notAfter(x) ((x)->cert_info->validity->notAfter) [all...] |
/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; 613 #define X509_get_notAfter(x) ((x)->cert_info->validity->notAfter) [all...] |
/external/okhttp/src/test/java/com/squareup/okhttp/internal/ |
SslContextBuilder.java | 53 private long notAfter = System.currentTimeMillis() + ONE_DAY_MILLIS; 107 generator.setNotAfter(new Date(notAfter));
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
X509V2AttributeCertificate.java | 44 private Date notAfter; 85 this.notAfter = cert.getAcinfo().getAttrCertValidityPeriod().getNotAfterTime().getDate(); 121 return notAfter;
|
/libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/ |
X509CertImpl.java | 75 private volatile long notAfter = -1; 207 long result = notAfter; 209 notAfter = result = tbsCert.getValidity().getNotAfter().getTime();
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/cert/ |
X509CertFactoryPerfTest.java | 77 static long notAfter = 2000000000L; 246 new Validity(new Date(notBefore), new Date(notAfter)); 517 assertEquals("Incorrect notAfter date", 518 new Date(notAfter), certificate.getNotAfter());
|
X509CertImplTest.java | 102 long notAfter = 2000000000L; 272 new Validity(new Date(notBefore), new Date(notAfter)); 447 assertEquals("Incorrect notAfter date", 448 new Date(notAfter), certificate.getNotAfter());
|
/external/chromium_org/net/cert/ |
x509_certificate_ios.cc | 66 x509_util::ParseDate(&cert_handle->validity.notAfter, &valid_expiry_);
|
x509_certificate_nss.cc | 33 x509_util::ParseDate(&cert_handle_->validity.notAfter, &valid_expiry_);
|
/libcore/luni/src/main/java/java/security/cert/ |
X509CertSelector.java | [all...] |
/libcore/luni/src/test/java/tests/security/cert/ |
X509CertSelectorTest.java | [all...] |
/external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/ |
X509CertSelectorTest.java | 99 protected Date notAfter = null; 145 public TestCert(Date notBefore, Date notAfter) { 146 setPeriod(notBefore, notAfter); 188 public void setPeriod(Date notBefore, Date notAfter) { 190 this.notAfter = notAfter; 381 new PrivateKeyUsagePeriod(notBefore, notAfter); [all...] |
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
x509.h | 157 ASN1_TIME *notAfter; 613 #define X509_get_notAfter(x) ((x)->cert_info->validity->notAfter) [all...] |
/external/openssl/include/openssl/ |
x509.h | 157 ASN1_TIME *notAfter; 613 #define X509_get_notAfter(x) ((x)->cert_info->validity->notAfter) [all...] |
/external/chromium/net/base/ |
x509_certificate_nss.cc | 640 ParseDate(&cert_handle_->validity.notAfter, &valid_expiry_); [all...] |