List lists all secret ids in the secrets data store
()
| 85 | type SecretsDriver interface { |
| 86 | // List lists all secret ids in the secrets data store |
| 87 | List() ([]string, error) |
| 88 | // Lookup gets the secret's data bytes |
| 89 | Lookup(id string) ([]byte, error) |
| 90 | // Store stores the secret's data bytes |
no outgoing calls