...

Package identifier

import "github.com/letsencrypt/boulder/identifier"
Overview
Index

Overview ▾

The identifier package defines types for RFC 8555 ACME identifiers.

Constants

const (
    // DNS is specified in RFC 8555 for DNS type identifiers.
    DNS = IdentifierType("dns")
)

type ACMEIdentifier

ACMEIdentifier is a struct encoding an identifier that can be validated. The protocol allows for different types of identifier to be supported (DNS names, IP addresses, etc.), but currently we only support RFC 8555 DNS type identifiers for domain names.

type ACMEIdentifier struct {
    // Type is the registered IdentifierType of the identifier.
    Type IdentifierType `json:"type"`
    // Value is the value of the identifier. For a DNS type identifier it is
    // a domain name.
    Value string `json:"value"`
}

func DNSIdentifier

func DNSIdentifier(domain string) ACMEIdentifier

DNSIdentifier is a convenience function for creating an ACMEIdentifier with Type DNS for a given domain name.

type IdentifierType

IdentifierType is a named string type for registered ACME identifier types. See https://tools.ietf.org/html/rfc8555#section-9.7.7

type IdentifierType string