(plaintext string)
| 15 | // Service defines the encryption interface |
| 16 | type Service interface { |
| 17 | Encrypt(plaintext string) (string, error) |
| 18 | Decrypt(ciphertext string) (string, error) |
| 19 | Hash(plaintext string) string |
| 20 | } |
no outgoing calls
no test coverage detected