Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type KeyStore ¶
type KeyStore struct {
// contains filtered or unexported fields
}
KeyStore represents an in memory store implementation of the KeyLookup interface.
func NewFS ¶
NewFS constructs a KeyStore based on a set of PEM files rooted inside of a directory. The name of each PEM file with be used as the key id. Example: keystore.NewFS(os.DirFS("/zarf/keys")) Example: /zarf/keys/54bb2165-71e1-41a6-af3e-7da4a0e1e2c1.pem
func NewMap ¶
func NewMap(store map[string]PrivateKey) *KeyStore
NewMap constructs a KeyStore with an initial set of keys.
type PrivateKey ¶
type PrivateKey struct { PK *rsa.PrivateKey PEM []byte }
PrivateKey represents key information.
Click to show internal directories.
Click to hide internal directories.