Skip to main content

CertificateDigestInterface

type CertificateDigestInterface

The digest of a certificate.

type CertificateDigestInterface interface {
// Returns the next digest in byte-increasing order.
NextLexicographical() *CertificateDigest
// Returns the next digest in byte-increasing order, or `None` if
// the result would overflow.
NextLexicographicalOpt() **CertificateDigest
ToBase58() string
ToBytes() []byte
}