| 16 | // Define an interface for Hashing |
| 17 | // 定义一个哈希算法的接口 |
| 18 | export interface Hashing { |
| 19 | hash(data: string): string; |
| 20 | } |
| 21 | |
| 22 | export interface EncryptionParams { |
| 23 | key: string; |
nothing calls this directly
no outgoing calls
no test coverage detected