(_ string, input gather.Bytes, output *gather.WriteBuffer)
| 30 | } |
| 31 | |
| 32 | func (nullStorageProtection) Verify(_ string, input gather.Bytes, output *gather.WriteBuffer) error { |
| 33 | output.Reset() |
| 34 | input.WriteTo(output) //nolint:errcheck |
| 35 | |
| 36 | return nil |
| 37 | } |
| 38 | |
| 39 | func (nullStorageProtection) OverheadBytes() int { |
| 40 | return 0 |