UNPKG

@groww-tech/encryption

Version:

Encryption service as name suggests provides encryption, decryption facility with all major algorithms in trend.

12 lines (10 loc) 240 B
declare type ResponseType = { data: string | null; error: string | null; }; declare type CipherOptionType = { iv?: CryptoJS.lib.WordArray; format?: any; [key: string]: any; }; export { CipherOptionType, ResponseType };