Versions in this module Expand all Collapse all v1 v1.0.1 Jan 17, 2019 v1.0.0 Jan 17, 2019 Changes in this version + type ExistingAccountError struct + MatchingAccount *core.Account + func (e ExistingAccountError) Error() string + type MemoryStore struct + func NewMemoryStore(clk clock.Clock) *MemoryStore + func (m *MemoryStore) AddAccount(acct *core.Account) (int, error) + func (m *MemoryStore) AddAuthorization(authz *core.Authorization) (int, error) + func (m *MemoryStore) AddCertificate(cert *core.Certificate) (int, error) + func (m *MemoryStore) AddChallenge(chal *core.Challenge) (int, error) + func (m *MemoryStore) AddOrder(order *core.Order) (int, error) + func (m *MemoryStore) ChangeAccountKey(acct *core.Account, newKey *jose.JSONWebKey) error + func (m *MemoryStore) GetAccountByID(id string) *core.Account + func (m *MemoryStore) GetAccountByKey(key crypto.PublicKey) (*core.Account, error) + func (m *MemoryStore) GetAuthorizationByID(id string) *core.Authorization + func (m *MemoryStore) GetCertificateByDER(der []byte) *core.Certificate + func (m *MemoryStore) GetCertificateByID(id string) *core.Certificate + func (m *MemoryStore) GetChallengeByID(id string) *core.Challenge + func (m *MemoryStore) GetOrderByID(id string) *core.Order + func (m *MemoryStore) GetRevokedCertificateByDER(der []byte) *core.Certificate + func (m *MemoryStore) RevokeCertificate(cert *core.Certificate) + func (m *MemoryStore) UpdateAccountByID(id string, acct *core.Account) error Other modules containing this package github.com/letsencrypt/pebble/v2