# Functions
CSRValidate does nothing and will never return an error.
NewCertGeneratorHandler builds a new handler for generating certificates directly from certificate requests; the validator covers the certificate request and the CA's key and certificate are used to sign the generated request.
NewCertGeneratorHandlerFromSigner returns a handler directly from the signer and validation function.
NewHandler builds a new Handler from the validation function provided.
# Constants
CSRNoHostMessage is used to alert the user to a certificate lacking a hosts field.
NoBundlerMessage is used to alert the user that the server does not have a bundler initialized.
# Structs
A CertGeneratorHandler accepts JSON-encoded certificate requests and returns a new private key and signed certificate; it handles sending the CSR to the server.
A CertRequest stores a PEM-encoded private key and corresponding CSR; this is returned from the CSR generation endpoint.
A Handler accepts JSON-encoded certificate requests and returns a new private key and certificate request.
Sum contains digests for a certificate or certificate request.
# Type aliases
Validator is a type of function that contains the logic for validating a certificate request.