client-crypto
Version:
Javascript Crypto Library for browser
11 lines (10 loc) • 423 B
TypeScript
declare const _default: {
RSA: {
encrypt: (plaintext: string, publicKey: string) => string | false;
decrypt: (message: string, privateKey: string) => string | false;
encryptOAEP: (plaintext: string, publicKey: string) => string | false;
};
AES: import("pandora-aes-browserify").AES;
SHA256: typeof import("pandora-crypto-browserify/dist/sha256").default;
};
export default _default;