UNPKG

gx-twofish64

Version:

A library for encrypting and decrypting data using the Twofish algorithm and Base64 encoding. Based on the Genexus implementation (Encrypt64 and Decrypt64).

5 lines (3 loc) 172 B
declare function encrypt64(text: string, hexKey: string): string; declare function decrypt64(base64Text: string, hexKey: string): string; export { decrypt64, encrypt64 };