(text: string)
| 7 | * @returns |
| 8 | */ |
| 9 | export function AESEncrypt(text: string): string { |
| 10 | return AES.encrypt(text, AES_CIPHER_KEY).toString(); |
| 11 | } |
| 12 | |
| 13 | export function AESDecrypt(text: string): string { |
| 14 | return AES.decrypt(text, AES_CIPHER_KEY).toString(); |
nothing calls this directly
no outgoing calls
no test coverage detected