scrypt
File encryption utility using scrypt for key derivation
Install
- All systems
-
curl cmd.cat/scrypt.sh
- Debian
-
apt-get install scrypt
- Ubuntu
-
apt-get install scrypt
- Arch Linux
-
pacman -S scrypt
- Kali Linux
-
apt-get install scrypt
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install scrypt
- OS X
-
brew install scrypt
- Raspbian
-
apt-get install scrypt
- Dockerfile
- dockerfile.run/scrypt
scrypt
File encryption utility using scrypt for key derivation
A simple password-based encryption utility which demonstrates the scrypt key derivation function. On modern hardware and with default parameters, the cost of cracking the password on a file encrypted by scrypt enc is approximately 100 billion times more than the cost of cracking the same password on a file encrypted by openssl enc; this means that a five-character password using scrypt is stronger than a ten-character password using openssl.