Documentation ¶
Overview ¶
Package testsecrets provides a dumb in-memory secret store to use in unit tests. Use secrets.Use(c, &testsecrets.Store{...}) to inject it into the context.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Store ¶
type Store struct { sync.Mutex Secrets map[string]secrets.Secret // current map of all secrets SecretLen int // length of generated secret, 8 bytes default Rand *rand.Rand // used to generate missing secrets }
Store implements secrets.Store in the simplest way possible using memory as a backend and very dumb deterministic "randomness" source for secret key autogeneration. Useful in unit tests. Can be modified directly (use lock if doing it concurrently). NEVER use it outside of tests.
func (*Store) AddRotationHandler ¶
func (t *Store) AddRotationHandler(ctx context.Context, name string, cb secrets.RotationHandler) error
AddRotationHandler is a part of Store interface.
func (*Store) RandomSecret ¶
RandomSecret is a part of Store interface.
Click to show internal directories.
Click to hide internal directories.