This commit is contained in:
2022-09-30 05:39:11 +00:00
parent 41ee9463ae
commit 4687fa49bc
11418 changed files with 1312504 additions and 0 deletions

25
buildfiles/app/node_modules/nodeezcryptor/README.md generated vendored Normal file
View File

@@ -0,0 +1,25 @@
# nodeezcryptor
## Instalation
### Linux:
Install your OS OpenSSL libraries.
Ubuntu: `apt install libssl-dev`
### Windows:
OpenSSL Precompiled libraries & header files are now included in this repo.
## package.json:
"nodeezcryptor": "git+https://notabug.org/xefglm/nodeezcryptor.git#master"
## Example:
const decryptor = require('decryptor');
//Get Key:
decryptor.getKey("trackID");
//Decrypt File:
decryptor.decryptFile("key", "inputFilename", "outputFilename");