Home
last modified time | relevance | path

Searched refs:LogEntryType (Results 1 – 6 of 6) sorted by relevance

/external/conscrypt/common/src/main/java/org/conscrypt/ct/
DCertificateEntry.java44 public enum LogEntryType { enum in CertificateEntry
49 private final LogEntryType entryType;
58 private CertificateEntry(LogEntryType entryType, byte[] certificate, byte[] issuerKeyHash) { in CertificateEntry()
59 if (entryType == LogEntryType.PRECERT_ENTRY && issuerKeyHash == null) { in CertificateEntry()
61 } else if (entryType == LogEntryType.X509_ENTRY && issuerKeyHash != null) { in CertificateEntry()
80 return new CertificateEntry(LogEntryType.PRECERT_ENTRY, tbsCertificate, issuerKeyHash); in createForPrecertificate()
105 return new CertificateEntry(LogEntryType.X509_ENTRY, x509Certificate, null); in createForX509Certificate()
113 public LogEntryType getEntryType() { in getEntryType()
128 if (entryType == LogEntryType.PRECERT_ENTRY) { in encode()
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ct/
DCertificateEntry.java49 public enum LogEntryType { enum in CertificateEntry
54 private final LogEntryType entryType;
63 private CertificateEntry(LogEntryType entryType, byte[] certificate, byte[] issuerKeyHash) { in CertificateEntry()
64 if (entryType == LogEntryType.PRECERT_ENTRY && issuerKeyHash == null) { in CertificateEntry()
66 } else if (entryType == LogEntryType.X509_ENTRY && issuerKeyHash != null) { in CertificateEntry()
85 return new CertificateEntry(LogEntryType.PRECERT_ENTRY, tbsCertificate, issuerKeyHash); in createForPrecertificate()
110 return new CertificateEntry(LogEntryType.X509_ENTRY, x509Certificate, null); in createForX509Certificate()
118 public LogEntryType getEntryType() { in getEntryType()
133 if (entryType == LogEntryType.PRECERT_ENTRY) { in encode()
/external/python/cryptography/docs/x509/
Dcertificate-transparency.rst46 :class:`~cryptography.x509.certificate_transparency.LogEntryType`
64 .. class:: LogEntryType
/external/python/cryptography/src/cryptography/x509/
Dcertificate_transparency.py13 class LogEntryType(Enum): class
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Dx509.py536 return x509.certificate_transparency.LogEntryType.PRE_CERTIFICATE
/external/python/cryptography/tests/x509/
Dtest_x509_ext.py5091 x509.certificate_transparency.LogEntryType.PRE_CERTIFICATE