Searched refs:notBefore (Results 1 - 25 of 28) sorted by relevance

12

/external/boringssl/src/crypto/x509v3/
H A Dv3_pku.c82 ASN1_IMP_OPT(PKEY_USAGE_PERIOD, notBefore, ASN1_GENERALIZEDTIME, 0),
93 if (usage->notBefore) {
95 ASN1_GENERALIZEDTIME_print(out, usage->notBefore);
/external/boringssl/src/crypto/x509/
H A Dx_val.c65 ASN1_SIMPLE(X509_VAL, notBefore, ASN1_TIME),
H A Dx509_set.c116 in = x->cert_info->validity->notBefore;
120 M_ASN1_TIME_free(x->cert_info->validity->notBefore);
121 x->cert_info->validity->notBefore = in;
129 return x->cert_info->validity->notBefore;
H A Dx509_r2x.c99 if (X509_gmtime_adj(xi->validity->notBefore, 0) == NULL)
H A Dmake_many_constraints.go95 notBefore, err := time.Parse(time.RFC3339, "2000-01-01T00:00:00Z")
107 NotBefore: notBefore,
149 NotBefore: notBefore,
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DX509v3CertificateBuilder.java33 * @param notBefore the date before which the certificate is not valid
38 public X509v3CertificateBuilder(X500Name issuer, BigInteger serial, Date notBefore, Date notAfter, X500Name subject, SubjectPublicKeyInfo publicKeyInfo) argument
40 this(issuer, serial, new Time(notBefore), new Time(notAfter), subject, publicKeyInfo);
49 * @param notBefore the date before which the certificate is not valid
55 public X509v3CertificateBuilder(X500Name issuer, BigInteger serial, Date notBefore, Date notAfter, Locale dateLocale, X500Name subject, SubjectPublicKeyInfo publicKeyInfo) argument
57 this(issuer, serial, new Time(notBefore, dateLocale), new Time(notAfter, dateLocale), subject, publicKeyInfo);
65 * @param notBefore the Time before which the certificate is not valid
70 public X509v3CertificateBuilder(X500Name issuer, BigInteger serial, Time notBefore, Time notAfter, X500Name subject, SubjectPublicKeyInfo publicKeyInfo) argument
75 tbsGen.setStartDate(notBefore);
/external/google-tv-pairing-protocol/java/src/com/google/polo/ssl/
H A DCsrUtil.java50 Date notBefore = new Date(calendar.getTimeInMillis());
56 return generateX509V3AuthorityCertificate(rootName, rootPair, notBefore, notAfter, serialNumber);
62 KeyPair rootPair, Date notBefore, Date notAfter, BigInteger serialNumber)
70 certGen.setNotBefore(notBefore);
111 Date notBefore = new Date(calendar.getTimeInMillis());
117 return issueX509V3Certificate(name, publicKey, rootCert, rootPair, notBefore, notAfter, serialNumber);
122 X509Certificate rootCert, KeyPair rootPair, Date notBefore, Date notAfter,
131 certGen.setNotBefore(notBefore);
61 generateX509V3AuthorityCertificate(String rootName, KeyPair rootPair, Date notBefore, Date notAfter, BigInteger serialNumber) argument
121 issueX509V3Certificate(String name, PublicKey publicKey, X509Certificate rootCert, KeyPair rootPair, Date notBefore, Date notAfter, BigInteger serialNumber) argument
H A DSslUtil.java130 * @param notBefore not valid before this date
138 String name, Date notBefore, Date notAfter, BigInteger serialNumber)
147 certGen.setNotBefore(notBefore);
252 Date notBefore = new Date(calendar.getTimeInMillis());
259 return generateX509V3Certificate(pair, name, notBefore, notAfter,
273 Date notBefore = new Date(calendar.getTimeInMillis());
277 return generateX509V3Certificate(pair, name, notBefore, notAfter,
137 generateX509V3Certificate(KeyPair pair, String name, Date notBefore, Date notAfter, BigInteger serialNumber) argument
/external/curl/lib/
H A Dx509asn1.h107 curl_asn1Element notBefore; member in struct:__anon4033
H A Dx509asn1.c726 /* Get notBefore and notAfter. */
728 ccp = Curl_getASN1Element(&cert->notBefore, elem.beg, elem.end);
961 ccp = Curl_ASN1tostr(&cert.notBefore, 0);
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DOpenSSLX509Certificate.java66 private final Date notBefore; field in class:OpenSSLX509Certificate
73 notBefore = toDate(NativeCrypto.X509_get_notBefore(mContext, this));
78 private OpenSSLX509Certificate(long ctx, Date notBefore, Date notAfter) { argument
80 this.notBefore = notBefore;
292 return (Date) notBefore.clone();
573 OpenSSLX509Certificate copy = new OpenSSLX509Certificate(NativeCrypto.X509_dup(mContext, this), notBefore, notAfter);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509V2AttributeCertificate.java43 private Date notBefore; field in class:X509V2AttributeCertificate
86 this.notBefore = cert.getAcinfo().getAttrCertValidityPeriod().getNotBeforeTime().getDate();
116 return notBefore;
/external/scapy/scapy/layers/tls/
H A Dcert.py582 notBefore = tbsCert.validity.not_before.val
583 if notBefore[-1] == "Z":
584 notBefore = notBefore[:-1]
586 self.notBefore = time.strptime(notBefore, "%y%m%d%H%M%S")
589 self.notBefore_str_simple = time.strftime("%x", self.notBefore)
/external/curl/lib/vtls/
H A Dnss.c874 PRTime notBefore, notAfter; local
881 CERT_GetCertTimes(cert, &notBefore, &notAfter);
882 PR_ExplodeTime(notBefore, PR_GMTParameters, &printableTime);
/external/boringssl/include/openssl/
H A Dx509.h122 ASN1_TIME *notBefore; member in struct:X509_val_st
523 #define X509_get_notBefore(x) ((x)->cert_info->validity->notBefore)
H A Dx509v3.h166 ASN1_GENERALIZEDTIME *notBefore; member in struct:PKEY_USAGE_PERIOD_st
/external/boringssl/src/include/openssl/
H A Dx509.h122 ASN1_TIME *notBefore; member in struct:X509_val_st
523 #define X509_get_notBefore(x) ((x)->cert_info->validity->notBefore)
H A Dx509v3.h166 ASN1_GENERALIZEDTIME *notBefore; member in struct:PKEY_USAGE_PERIOD_st
/external/python/cpython2/Modules/
H A D_ssl.c1196 ASN1_TIME *notBefore, *notAfter; local
1254 notBefore = X509_get_notBefore(certificate);
1255 ASN1_TIME_print(biobuf, notBefore);
1264 if (PyDict_SetItemString(retval, "notBefore", pnotBefore) < 0) {
/external/python/cpython3/Modules/
H A D_ssl.c1281 ASN1_TIME *notBefore, *notAfter; local
1339 notBefore = X509_get_notBefore(certificate);
1340 ASN1_TIME_print(biobuf, notBefore);
1349 if (PyDict_SetItemString(retval, "notBefore", pnotBefore) < 0) {
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
H A Dnative_crypto.cc3992 ASN1_TIME* notBefore = X509_get_notBefore(x509); local
3993 JNI_TRACE("X509_get_notBefore(%p) => %p", x509, notBefore);
3994 return reinterpret_cast<uintptr_t>(notBefore);
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 514 milliseconds

12