@stackernews/lnc-web
Version:
Lightning Node Connect npm module for web
6 lines • 446 B
TypeScript
export declare const generateSalt: () => string;
export declare const encrypt: (data: any, password: string, salt: string) => string;
export declare const decrypt: (data: any, password: string, salt: string) => string;
export declare const createTestCipher: (password: string, salt: string) => string;
export declare const verifyTestCipher: (testCipher: string, password: string, salt: string) => boolean;
//# sourceMappingURL=encryption.d.ts.map