| 10 | // Define an interface for encryption |
| 11 | // 定义一个加密器的接口 |
| 12 | export interface Encryption { |
| 13 | encrypt(plainText: string): string; |
| 14 | decrypt(cipherText: string): string; |
| 15 | } |
| 16 | // Define an interface for Hashing |
| 17 | // 定义一个哈希算法的接口 |
| 18 | export interface Hashing { |
nothing calls this directly
no outgoing calls
no test coverage detected