| 6 | ) |
| 7 | |
| 8 | type encryptorWrapper struct { |
| 9 | impl encryption.Encryptor |
| 10 | next encryption.Encryptor |
| 11 | } |
| 12 | |
| 13 | func (p *encryptorWrapper) Encrypt(plainText gather.Bytes, contentID []byte, output *gather.WriteBuffer) error { |
| 14 | var tmp gather.WriteBuffer |
nothing calls this directly
no outgoing calls
no test coverage detected