UNPKG

czip

Version:

Nodejs console app for file encryption

54 lines (44 loc) 881 B
# CZIP Nodejs console app for file encryption ## Install ```javascript npm install czip --global ``` ## Encrypt Encrypt "item" folder into "item.czip" archive ```javascript czip -e item ``` ## Decrypt Decrypt "item.czip" archive into "item" folder ```javascript czip -d item // WARNING: You should not write ".czip" extention when you decrypt ``` ## Session Decrypt "item.czip" archive for updating. Once the session is ended, the decrypted folder is deleted. Write `help` inside a session, to see more commands. ```javascript czip -s item ``` ## Is the password correct? ```javascript czip -p item ``` ## Current version ```javascript czip -v ``` ## Help ```javascript czip -h ``` ## Features You're able to set a password in arguments. Example: ```javascript czip -e "my folder" mySuperPass ``` ## See also Web version: https://github.com/webdevelopland/cryptozip