scryptenc-cli

Encrypt and decrypt files using the scrypt key derivation function.

cargomacoslinuxwindows
Try with needOr install directly
Source

About

An utility for encrypt and decrypt files

Commands

scryptenc

Examples

encrypt a file with a password$ scryptenc input.txt output.txt
decrypt a file and save to new location$ scryptenc -d encrypted.txt decrypted.txt
encrypt a file and overwrite the original$ scryptenc input.txt input.txt
decrypt a file to stdout instead of a file$ scryptenc -d encrypted.txt -
encrypt a file with custom scrypt parameters$ scryptenc -N 16 input.txt output.txt