Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Destination ¶
type Destination interface { // Init attempts to initialize this destination for writing. Init should be // idempotent and may write informational log messages if resources are // created. Init(subdirs []string) error // Verify is run before renewals to check for any potential problems with // the destination. These errors may be informational (logged warnings) or // return an error that may potentially terminate the process. Verify(keys []string) error // Write stores data to the destination with the given name. Write(name string, data []byte) error // Read fetches data from the destination with a given name. Read(name string) ([]byte, error) }
Destination can persist renewable certificates.
Click to show internal directories.
Click to hide internal directories.