eneko/axx
Encrypt / decrypt files from the command line.
Usage
Key Generation
With Axx is very easy to generate AES 256 encryption keys.
$ axx k > ~/.mykey.pem⚠️ Keys must be kept safe and secure. Without the key, it would be impossible to recover an encrypted file.
File Encryption
Axx supports file encryption with key, passphrase, or passphrase + salt.
With key:
$ axx e -i ~/.mykey.pem secretstuff.txtWith passphrase:
$ axx e -p pass secretstuff.txtWith passphrase and salt:
$ axx e -p pass -s sugar secretstuff.txtFile Decryption
Axx supports file decryption with key, passphrase, or passphrase + salt.
With key:
$ axx d -i ~/.mykey.pem secretstuff.txt.encWith passphrase:
$ axx d -p pass secretstuff.txt.encWith passphrase and salt:
$ axx d -p pass -s sugar secretstuff.txt.encInstallation
With Homebrew
$ brew install eneko/tap/axxFrom source
$ git clone https://github.com/eneko/Axx.git && cd Axx
$ make installPackage Metadata
Repository: eneko/axx
Default branch: main
README: README.md