Class MerkleTreeCertEntryType


  • public final class MerkleTreeCertEntryType
    extends java.lang.Object
    Constants for the MerkleTreeCertEntryType enum defined in Section 5.2.1 of draft-ietf-plants-merkle-tree-certs:
     enum {
         null_entry(0), tbs_cert_entry(1), (2^16-1)
     } MerkleTreeCertEntryType;
     

    The on-wire encoding is a big-endian uint16. Future drafts may define additional values.

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int NULL_ENTRY
      null_entry — a no-information placeholder entry.
      static int TBS_CERT_ENTRY
      tbs_cert_entry — the body is a DER-encoded TBSCertificateLogEntry contents.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • NULL_ENTRY

        public static final int NULL_ENTRY
        null_entry — a no-information placeholder entry.
        See Also:
        Constant Field Values
      • TBS_CERT_ENTRY

        public static final int TBS_CERT_ENTRY
        tbs_cert_entry — the body is a DER-encoded TBSCertificateLogEntry contents.
        See Also:
        Constant Field Values