| 18 | const LATEST = "LATEST" |
| 19 | |
| 20 | type Service struct { |
| 21 | keyCache cache.Cache[string, *vaultv1.DataEncryptionKey] |
| 22 | |
| 23 | storage storage.Storage |
| 24 | |
| 25 | decryptionKeys map[string]*vaultv1.KeyEncryptionKey |
| 26 | encryptionKey *vaultv1.KeyEncryptionKey |
| 27 | |
| 28 | keyring *keyring.Keyring |
| 29 | bearer string |
| 30 | } |
| 31 | |
| 32 | var _ vaultv1connect.VaultServiceHandler = (*Service)(nil) |
| 33 |
nothing calls this directly
no outgoing calls
no test coverage detected