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).

10 lines 738 B
export declare function createZipFromPaths(paths: string[], outputZipPath: string): string; export declare function extractZipToDir(zipPath: string, outputDir: string): void; export declare function readBinaryFile(filePath: string): Buffer; export declare function writeBinaryFile(filePath: string, data: Buffer): void; export declare function detectMimeType(filePath: string): string; export declare function hashFile(filePath: string): string; export declare function collectMetadata(filePath: string): Record<string, any>; export declare function saveEncryptedJson(outputPath: string, data: Record<string, any>): void; export declare function loadEncryptedJson(jsonPath: string): Record<string, any>; //# sourceMappingURL=core.d.ts.map