dnscontrol/pkg/acme/storage.go

14 lines
490 B
Go
Raw Normal View History

package acme
import "github.com/go-acme/lego/certificate"
2018-10-10 06:51:48 +08:00
// Storage is an abstracrion around how certificates, keys, and account info are stored on disk or elsewhere.
type Storage interface {
// Get Existing certificate, or return nil if it does not exist
GetCertificate(name string) (*certificate.Resource, error)
StoreCertificate(name string, cert *certificate.Resource) error
GetAccount(acmeHost string) (*Account, error)
StoreAccount(acmeHost string, account *Account) error
}