| 18 | const aes256KeyDerivationSecretSize = 32 |
| 19 | |
| 20 | type aes256GCMHmacSha256 struct { |
| 21 | hmacPool *sync.Pool |
| 22 | } |
| 23 | |
| 24 | // aeadForContent returns cipher.AEAD using key derived from a given contentID. |
| 25 | func (e aes256GCMHmacSha256) aeadForContent(contentID []byte) (cipher.AEAD, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected