nullCipher is a dbcrypt.Cipher that does not encrypt or decrypt. used for testing
| 444 | // nullCipher is a dbcrypt.Cipher that does not encrypt or decrypt. |
| 445 | // used for testing |
| 446 | type nullCipher struct{} |
| 447 | |
| 448 | func (*nullCipher) Encrypt(b []byte) ([]byte, error) { |
| 449 | return b, nil |
nothing calls this directly
no outgoing calls
no test coverage detected