UNPKG

cross-crypto-ts

Version:

Cifrado híbrido seguro con interoperabilidad entre lenguajes como Python, TypeScript y Rust, basado en AES-GCM (256 bits) y RSA-OAEP (4096 bits).

4 lines 347 B
import { EncryptFileOptions } from './types'; export declare function encryptFileHybrid(paths: string[], publicKey: string, options?: EncryptFileOptions): Record<string, any>; export declare function decryptFileHybrid(encPath: string, privateKey: string, extractTo?: string, cleanupZip?: boolean): string; //# sourceMappingURL=file_crypto.d.ts.map