Documentation ¶
Index ¶
- Constants
- type Account
- type AcmeCertificate
- type ApiVersion
- type Client
- func (c *Client) ApiVersion() string
- func (c *Client) CertPath(certName string) string
- func (c *Client) ConfigPath() string
- func (c *Client) EnableDebug()
- func (c *Client) GetStoredCertificate(certName string, domains []string) (bool, *AcmeCertificate)
- func (c *Client) Issue(certName string, domains []string) (*AcmeCertificate, map[string]error)
- func (c *Client) ProviderName() string
- func (c *Client) Renew(certName string) (*AcmeCertificate, error)
- type KeyType
- type Provider
- type ProviderFactory
- type ProviderOpts
Constants ¶
const ( StorageDir = "/etc/letsencrypt" ProductionApiUri = "https://acme-v01.api.letsencrypt.org/directory" StagingApiUri = "https://acme-staging.api.letsencrypt.org/directory" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Account ¶
type Account struct { Email string `json:"email"` Registration *lego.RegistrationResource `json:"registrations"` // contains filtered or unexported fields }
func NewAccount ¶
NewAccount creates a new or gets a stored LE account for the given email
func (*Account) GetPrivateKey ¶
func (a *Account) GetPrivateKey() crypto.PrivateKey
GetPrivateKey returns the private RSA account key.
func (*Account) GetRegistration ¶
func (a *Account) GetRegistration() *lego.RegistrationResource
GetRegistration returns the server registration
type AcmeCertificate ¶
type AcmeCertificate struct { lego.CertificateResource DnsNames string `json:"dnsNames"` ExpiryDate time.Time `json:"expiryDate"` SerialNumber string `json:"serialNumber"` }
AcmeCertificate represents a CA issued certificate, PrivateKey and Certificate are both PEM encoded.
Anonymous fields: PrivateKey []byte Certificate []byte Domain string
type ApiVersion ¶ added in v0.2.6
type ApiVersion string
const ( Production ApiVersion = "Production" Sandbox ApiVersion = "Sandbox" )
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client represents a Lets Encrypt client
func NewClient ¶
func NewClient(email string, kt KeyType, apiVer ApiVersion, provider ProviderOpts) (*Client, error)
NewClient returns a new Lets Encrypt client
func (*Client) ApiVersion ¶ added in v0.4.0
func (*Client) ConfigPath ¶ added in v0.2.6
func (*Client) EnableDebug ¶ added in v0.2.6
func (c *Client) EnableDebug()
EnableDebugLogging enables logging in the upstream lego library
func (*Client) GetStoredCertificate ¶ added in v0.2.6
func (c *Client) GetStoredCertificate(certName string, domains []string) (bool, *AcmeCertificate)
GetStoredCertificate returns the locally stored certificate for the given domains
func (*Client) ProviderName ¶ added in v0.4.0
type ProviderFactory ¶ added in v0.4.0
type ProviderFactory struct {
// contains filtered or unexported fields
}
type ProviderOpts ¶
type ProviderOpts struct { Provider Provider // CloudFlare credentials CloudflareEmail string CloudflareKey string // DigitalOcean credentials DoAccessToken string // AWS Route 53 credentials AwsAccessKey string AwsSecretKey string // DNSimple credentials DNSimpleEmail string DNSimpleKey string // Dyn credentials DynCustomerName string DynUserName string DynPassword string // Vultr credentials VultrApiKey string // OVH credentials OvhApplicationKey string OvhApplicationSecret string OvhConsumerKey string // Gandi credentials GandiApiKey string }
ProviderOpts is used to configure the DNS provider used by the Let's Encrypt client for domain validation