Closed landvibe closed 5 years ago
Unfortunately not, to bring decryption functionality from libarchive requires to compile openssl to webassembly and it will increase wasm file size as well. this is certainly possible but would make sense to introduce different wasm bundles
Starting from 1.3.0 you can now extract password protected archives
const archive = await Archive.open(file);
await archive.usePassword("password");
let obj = await archive.extractFiles();
.