| 70 | } |
| 71 | |
| 72 | type authenticatedEncryptionProtection struct { |
| 73 | e encryption.Encryptor |
| 74 | } |
| 75 | |
| 76 | func (p authenticatedEncryptionProtection) deriveIV(id string) []byte { |
| 77 | contentID := sha256.Sum256([]byte(id)) |
nothing calls this directly
no outgoing calls
no test coverage detected