Documentation ¶
Index ¶
- Constants
- func GetPrivateKey(priKey crypto.PrivateKey, keyType KeyType) ([]byte, error)
- type AcmeClient
- func (c *AcmeClient) GetDNSResolve(domains []string) (map[string]Resolve, error)
- func (c *AcmeClient) ObtainSSL(domains []string, privateKey crypto.PrivateKey) (certificate.Resource, error)
- func (c *AcmeClient) UseDns(dnsType DnsType, params string, websiteSSL model.WebsiteSSL) error
- func (c *AcmeClient) UseHTTP(path string) error
- func (c *AcmeClient) UseManualDns() error
- type AcmeUser
- type DNSParam
- type DnsType
- type KeyType
- type Resolve
Constants ¶
View Source
const ( KeyEC256 = certcrypto.EC256 KeyEC384 = certcrypto.EC384 KeyRSA2048 = certcrypto.RSA2048 KeyRSA3072 = certcrypto.RSA3072 KeyRSA4096 = certcrypto.RSA4096 )
Variables ¶
This section is empty.
Functions ¶
func GetPrivateKey ¶
func GetPrivateKey(priKey crypto.PrivateKey, keyType KeyType) ([]byte, error)
Types ¶
type AcmeClient ¶
func NewAcmeClient ¶
func NewAcmeClient(acmeAccount *model.WebsiteAcmeAccount) (*AcmeClient, error)
func NewRegisterClient ¶
func NewRegisterClient(acmeAccount *model.WebsiteAcmeAccount) (*AcmeClient, error)
func (*AcmeClient) GetDNSResolve ¶
func (c *AcmeClient) GetDNSResolve(domains []string) (map[string]Resolve, error)
func (*AcmeClient) ObtainSSL ¶
func (c *AcmeClient) ObtainSSL(domains []string, privateKey crypto.PrivateKey) (certificate.Resource, error)
func (*AcmeClient) UseDns ¶
func (c *AcmeClient) UseDns(dnsType DnsType, params string, websiteSSL model.WebsiteSSL) error
func (*AcmeClient) UseHTTP ¶
func (c *AcmeClient) UseHTTP(path string) error
func (*AcmeClient) UseManualDns ¶
func (c *AcmeClient) UseManualDns() error
type AcmeUser ¶
type AcmeUser struct { Email string Registration *registration.Resource Key crypto.PrivateKey }
func (*AcmeUser) GetPrivateKey ¶
func (u *AcmeUser) GetPrivateKey() crypto.PrivateKey
func (*AcmeUser) GetRegistration ¶
func (u *AcmeUser) GetRegistration() *registration.Resource
type DNSParam ¶
type DNSParam struct { ID string `json:"id"` Token string `json:"token"` AccessKey string `json:"accessKey"` SecretKey string `json:"secretKey"` Email string `json:"email"` APIkey string `json:"apiKey"` APIUser string `json:"apiUser"` APISecret string `json:"apiSecret"` SecretID string `json:"secretID"` }
type KeyType ¶ added in v1.9.0
type KeyType = certcrypto.KeyType
Click to show internal directories.
Click to hide internal directories.