scrypt

Encrypt and decrypt files using a memory-hard password function.

brewmacoslinux
Try with needOr install directly
Source

About

Encrypt and decrypt files using memory-hard password function

Commands

scrypt

Examples

encrypt a file with a password$ scrypt enc myfile.txt myfile.txt.scrypt
decrypt a file and save to new location$ scrypt dec myfile.txt.scrypt decrypted.txt
encrypt a file and overwrite the original$ scrypt enc -f myfile.txt
decrypt a file to stdout without saving$ scrypt dec myfile.txt.scrypt - | cat
encrypt a file with custom memory and CPU parameters$ scrypt enc -M 100 -N 16 -r 8 -p 1 myfile.txt myfile.txt.scrypt