react-native-turbo-encryption
Version:
A superfast encryption module for React native
5 lines • 363 B
TypeScript
export declare function encrypt(plainText: string, key: string): string;
export declare function decrypt(encryptedText: string, key: string): string;
export declare function encryptAsync(plainText: string, key: string): Promise<string>;
export declare function decryptAsync(encryptedText: string, key: string): Promise<string>;
//# sourceMappingURL=index.d.ts.map