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

1 2

  /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);
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;
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/google-tv-pairing-protocol/java/src/com/google/polo/ssl/
CsrUtil.java 52 Date notAfter = new Date(calendar.getTimeInMillis());
56 return generateX509V3AuthorityCertificate(rootName, rootPair, notBefore, notAfter, serialNumber);
62 KeyPair rootPair, Date notBefore, Date notAfter, BigInteger serialNumber)
71 certGen.setNotAfter(notAfter);
113 Date notAfter = new Date(calendar.getTimeInMillis());
117 return issueX509V3Certificate(name, publicKey, rootCert, rootPair, notBefore, notAfter, serialNumber);
122 X509Certificate rootCert, KeyPair rootPair, Date notBefore, Date notAfter,
132 certGen.setNotAfter(notAfter);
SslUtil.java 130 * @param notAfter not valid after this date
137 String name, Date notBefore, Date notAfter, BigInteger serialNumber)
147 certGen.setNotAfter(notAfter);
236 Date notAfter = new Date(calendar.getTimeInMillis());
241 return generateX509V3Certificate(pair, name, notBefore, notAfter,
257 Date notAfter = new Date(calendar.getTimeInMillis());
259 return generateX509V3Certificate(pair, name, notBefore, notAfter,
  /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/mockwebserver/src/main/java/com/squareup/okhttp/internal/
SslContextBuilder.java 57 private long notAfter = System.currentTimeMillis() + ONE_DAY_MILLIS;
125 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;
  /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 98 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;
378 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...]
x509v3.h 160 ASN1_GENERALIZEDTIME *notAfter;
  /external/openssl/include/openssl/
x509.h 157 ASN1_TIME *notAfter;
613 #define X509_get_notAfter(x) ((x)->cert_info->validity->notAfter)
    [all...]

Completed in 1253 milliseconds

1 2