You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's a little difficult to do this in a browser. Because code are writen in js and encryption is done on your computer. There is no server.
If you have node.js installed. You can download this project. Run npm install
And replace index.js with some code like
importfsfrom'fs';importluaSimpleXorEncryptfrom'./LuaSimpleXorEncrypt';// You need to repeat these lines to encrypt multiple files.constencrypted=luaSimpleXorEncrypt(fs.readFileSync(path),'password',options);fs.writeFileSync(newPath,encrypted);
and then add target: 'node', to webpack.config.js.
Finally, run npm run build. You will let index.js run.
Hello,
How to multiupload file and encrypt all files and download all files in zip.
Thank You
The text was updated successfully, but these errors were encountered: