Home | History | Annotate | Download | only in ct

Lines Matching defs:entryType

51     private final LogEntryType entryType;
53 // Only used when entryType is LOG_ENTRY_TYPE_PRECERT
56 /* If entryType == PRECERT_ENTRY, this is the encoded TBS of the precertificate.
57 If entryType == X509_ENTRY, this is the encoded leaf certificate. */
60 private CertificateEntry(LogEntryType entryType, byte[] certificate, byte[] issuerKeyHash) {
61 if (entryType == LogEntryType.PRECERT_ENTRY && issuerKeyHash == null) {
63 } else if (entryType == LogEntryType.X509_ENTRY && issuerKeyHash != null) {
71 this.entryType = entryType;
115 return entryType;
128 Serialization.writeNumber(output, entryType.ordinal(), CTConstants.LOG_ENTRY_TYPE_LENGTH);
129 if (entryType == LogEntryType.PRECERT_ENTRY) {