Documentation
¶
Index ¶
- type Account
- type AccountsStorage
- func (s *AccountsStorage) ExistsAccountFilePath() bool
- func (s *AccountsStorage) GetPrivateKey(keyType certcrypto.KeyType) crypto.PrivateKey
- func (s *AccountsStorage) GetRootPath() string
- func (s *AccountsStorage) GetRootUserPath() string
- func (s *AccountsStorage) GetUserID() string
- func (s *AccountsStorage) LoadAccount(privateKey crypto.PrivateKey) *Account
- func (s *AccountsStorage) Save(account *Account) error
- type CertConfig
- type CertificatesStorage
- func (s *CertificatesStorage) CreateRootFolder()
- func (s *CertificatesStorage) ExistsFile(domain, extension string) bool
- func (s *CertificatesStorage) GetFileName(domain, extension string) string
- func (s *CertificatesStorage) GetRootPath() string
- func (s *CertificatesStorage) ReadCertificate(domain, extension string) ([]*x509.Certificate, error)
- func (s *CertificatesStorage) ReadFile(domain, extension string) ([]byte, error)
- func (s *CertificatesStorage) ReadResource(domain string) certificate.Resource
- func (s *CertificatesStorage) SaveResource(certRes *certificate.Resource)
- func (s *CertificatesStorage) WriteFile(domain, extension string, data []byte) error
- type LegoCMD
- func (l *LegoCMD) DNSCert(CertMode string, CertDomain string) (CertPath string, KeyPath string, err error)
- func (l *LegoCMD) HTTPCert(CertMode string, CertDomain string) (CertPath string, KeyPath string, err error)
- func (l *LegoCMD) Renew(CertMode string, CertDomain string) (bool, error)
- func (l *LegoCMD) RenewCert(CertMode string, CertDomain string) (CertPath string, KeyPath string, ok bool, err error)
- func (l *LegoCMD) Run(CertMode string, CertDomain string) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Account ¶
type Account struct {
Email string `json:"email"`
Registration *registration.Resource `json:"registration"`
// contains filtered or unexported fields
}
Account represents a users local saved credentials.
func (*Account) GetPrivateKey ¶
func (a *Account) GetPrivateKey() crypto.PrivateKey
GetPrivateKey returns the private RSA account key.
func (*Account) GetRegistration ¶
func (a *Account) GetRegistration() *registration.Resource
GetRegistration returns the server registration.
type AccountsStorage ¶
type AccountsStorage struct {
// contains filtered or unexported fields
}
AccountsStorage A storage for account data.
rootPath:
./.lego/accounts/
│ └── root accounts directory
└── "path" option
rootUserPath:
./.lego/accounts/localhost_14000/hubert@hubert.com/
│ │ │ └── userID ("email" option)
│ │ └── CA server ("server" option)
│ └── root accounts directory
└── "path" option
keysPath:
./.lego/accounts/localhost_14000/hubert@hubert.com/keys/
│ │ │ │ └── root keys directory
│ │ │ └── userID ("email" option)
│ │ └── CA server ("server" option)
│ └── root accounts directory
└── "path" option
accountFilePath:
./.lego/accounts/localhost_14000/hubert@hubert.com/account.json
│ │ │ │ └── account file
│ │ │ └── userID ("email" option)
│ │ └── CA server ("server" option)
│ └── root accounts directory
└── "path" option
func NewAccountsStorage ¶
func NewAccountsStorage(l *LegoCMD) *AccountsStorage
NewAccountsStorage Creates a new AccountsStorage.
func (*AccountsStorage) ExistsAccountFilePath ¶
func (s *AccountsStorage) ExistsAccountFilePath() bool
func (*AccountsStorage) GetPrivateKey ¶
func (s *AccountsStorage) GetPrivateKey(keyType certcrypto.KeyType) crypto.PrivateKey
func (*AccountsStorage) GetRootPath ¶
func (s *AccountsStorage) GetRootPath() string
func (*AccountsStorage) GetRootUserPath ¶
func (s *AccountsStorage) GetRootUserPath() string
func (*AccountsStorage) GetUserID ¶
func (s *AccountsStorage) GetUserID() string
func (*AccountsStorage) LoadAccount ¶
func (s *AccountsStorage) LoadAccount(privateKey crypto.PrivateKey) *Account
func (*AccountsStorage) Save ¶
func (s *AccountsStorage) Save(account *Account) error
type CertConfig ¶
type CertificatesStorage ¶
type CertificatesStorage struct {
// contains filtered or unexported fields
}
CertificatesStorage a certificates' storage.
rootPath:
./.lego/certificates/
│ └── root certificates directory
└── "path" option
archivePath:
./.lego/archives/
│ └── archived certificates directory
└── "path" option
func NewCertificatesStorage ¶
func NewCertificatesStorage(path string) *CertificatesStorage
NewCertificatesStorage create a new certificates storage.
func (*CertificatesStorage) CreateRootFolder ¶
func (s *CertificatesStorage) CreateRootFolder()
func (*CertificatesStorage) ExistsFile ¶
func (s *CertificatesStorage) ExistsFile(domain, extension string) bool
func (*CertificatesStorage) GetFileName ¶
func (s *CertificatesStorage) GetFileName(domain, extension string) string
func (*CertificatesStorage) GetRootPath ¶
func (s *CertificatesStorage) GetRootPath() string
func (*CertificatesStorage) ReadCertificate ¶
func (s *CertificatesStorage) ReadCertificate(domain, extension string) ([]*x509.Certificate, error)
func (*CertificatesStorage) ReadFile ¶
func (s *CertificatesStorage) ReadFile(domain, extension string) ([]byte, error)
func (*CertificatesStorage) ReadResource ¶
func (s *CertificatesStorage) ReadResource(domain string) certificate.Resource
func (*CertificatesStorage) SaveResource ¶
func (s *CertificatesStorage) SaveResource(certRes *certificate.Resource)
type LegoCMD ¶
type LegoCMD struct {
C *CertConfig
// contains filtered or unexported fields
}
func New ¶
func New(certConf *CertConfig) (*LegoCMD, error)
func (*LegoCMD) DNSCert ¶
func (l *LegoCMD) DNSCert(CertMode string, CertDomain string) (CertPath string, KeyPath string, err error)
DNSCert cert a domain using DNS API
func (*LegoCMD) HTTPCert ¶
func (l *LegoCMD) HTTPCert(CertMode string, CertDomain string) (CertPath string, KeyPath string, err error)
HTTPCert cert a domain using http methods
Click to show internal directories.
Click to hide internal directories.