MCPcopy Create free account
hub / github.com/docker/secrets-engine / PassValue

Struct PassValue

plugins/pass/store/store.go:26–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24var _ store.Secret = &PassValue{}
25
26type PassValue struct {
27 value []byte
28 metadata map[string]string // not exported; populated via SetMetadata
29}
30
31func NewPassValue(value []byte) *PassValue {
32 return &PassValue{value: value}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected