lego/cmd/account.go

34 lines
749 B
Go
Raw Normal View History

2019-03-11 16:56:48 +00:00
package cmd
import (
"crypto"
2020-09-02 01:20:01 +00:00
"github.com/go-acme/lego/v4/registration"
)
2020-05-08 17:35:25 +00:00
// Account represents a users local saved credentials.
type Account struct {
Email string `json:"email"`
Registration *registration.Resource `json:"registration"`
key crypto.PrivateKey
}
/** Implementation of the registration.User interface **/
2020-05-08 17:35:25 +00:00
// GetEmail returns the email address for the account.
func (a *Account) GetEmail() string {
return a.Email
}
// GetPrivateKey returns the private RSA account key.
func (a *Account) GetPrivateKey() crypto.PrivateKey {
return a.key
}
2020-05-08 17:35:25 +00:00
// GetRegistration returns the server registration.
func (a *Account) GetRegistration() *registration.Resource {
return a.Registration
}
/** End **/