Searched refs:LogEntryType (Results 1 – 6 of 6) sorted by relevance
/external/conscrypt/common/src/main/java/org/conscrypt/ct/ |
D | CertificateEntry.java | 44 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/ |
D | CertificateEntry.java | 49 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/ |
D | certificate-transparency.rst | 46 :class:`~cryptography.x509.certificate_transparency.LogEntryType` 64 .. class:: LogEntryType
|
/external/python/cryptography/src/cryptography/x509/ |
D | certificate_transparency.py | 13 class LogEntryType(Enum): class
|
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/ |
D | x509.py | 536 return x509.certificate_transparency.LogEntryType.PRE_CERTIFICATE
|
/external/python/cryptography/tests/x509/ |
D | test_x509_ext.py | 5091 x509.certificate_transparency.LogEntryType.PRE_CERTIFICATE
|