Home
last modified time | relevance | path

Searched refs:revocationDate (Results 1 – 13 of 13) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
DCertStatus.java13 Date revocationDate = null; field in CertStatus
20 return revocationDate; in getRevocationDate()
26 public void setRevocationDate(Date revocationDate) in setRevocationDate() argument
28 this.revocationDate = revocationDate; in setRevocationDate()
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/pkix/jcajce/
DCertStatus.java13 Date revocationDate = null; field in CertStatus
20 return revocationDate; in getRevocationDate()
26 public void setRevocationDate(Date revocationDate) in setRevocationDate() argument
28 this.revocationDate = revocationDate; in setRevocationDate()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jce/provider/
DCertStatus.java14 Date revocationDate = null; field in CertStatus
21 return revocationDate; in getRevocationDate()
27 public void setRevocationDate(Date revocationDate) in setRevocationDate() argument
29 this.revocationDate = revocationDate; in setRevocationDate()
/external/boringssl/src/crypto/x509/
Dx509cset.c164 return x->revocationDate; in X509_REVOKED_get0_revocationDate()
173 in = x->revocationDate; in X509_REVOKED_set_revocationDate()
177 M_ASN1_TIME_free(x->revocationDate); in X509_REVOKED_set_revocationDate()
178 x->revocationDate = in; in X509_REVOKED_set_revocationDate()
Dt_crl.c116 ASN1_TIME_print(out, r->revocationDate); in X509_CRL_print()
Dx_crl.c93 ASN1_SIMPLE(X509_REVOKED,revocationDate, ASN1_TIME),
/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLX509CRLEntry.java34 private final Date revocationDate; field in OpenSSLX509CRLEntry
40revocationDate = OpenSSLX509CRL.toDate(NativeCrypto.get_X509_REVOKED_revocationDate(mContext)); in OpenSSLX509CRLEntry()
115 return (Date) revocationDate.clone(); in getRevocationDate()
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DOpenSSLX509CRLEntry.java35 private final Date revocationDate; field in OpenSSLX509CRLEntry
41revocationDate = OpenSSLX509CRL.toDate(NativeCrypto.get_X509_REVOKED_revocationDate(mContext)); in OpenSSLX509CRLEntry()
116 return (Date) revocationDate.clone(); in getRevocationDate()
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
DRevokedStatus.java24 Date revocationDate, in RevokedStatus() argument
27 … this.info = new RevokedInfo(new ASN1GeneralizedTime(revocationDate), CRLReason.lookup(reason)); in RevokedStatus()
/external/scapy/scapy/layers/tls/
Dcert.py804 date = cert.revocationDate.val
808 revocationDate = time.strptime(date, "%y%m%d%H%M%S")
/external/scapy/test/
Dx509.uts183 …577943160751197113872490992424857032) and tbs.revokedCertificates[0].revocationDate == ASN1_UTC_TI…
/external/boringssl/src/include/openssl/
Dx509.h391 ASN1_TIME *revocationDate; member
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc4533 JNI_TRACE("get_X509_REVOKED_revocationDate(%p) => %p", revoked, revoked->revocationDate); in NativeCrypto_get_X509_REVOKED_revocationDate()
4534 return reinterpret_cast<uintptr_t>(revoked->revocationDate); in NativeCrypto_get_X509_REVOKED_revocationDate()
4563 ASN1_TIME_print(bio, revoked->revocationDate); in NativeCrypto_X509_REVOKED_print()