bluprcrypt
v0.0.1
Published
Symetric file encrypter/decrypter
Downloads
7
Readme
File encryption
The file encrypter allows to encrypt a file and commit it savely to a git repository. It can be used to password protect an config file or some sensitive data of your development environment.
Usage
You can use the standalone binary bluprcrypt
or with the blupr
cli tool
Encrypt a file
Use the following command to encrypt your file
bluprcrypt encrypt {password} {source filepath} {destination filepath}
$ bluprcrypt encrypt 'my very save password' .env mylocalenv.blob
now you can savely commit the encrypted file into the repository, and reuse it on your other machines
Decrypt a file
Use the following command to decrypt your file
bluprcrypt decrypt {password} {source filepath} {destination filepath}
$ bluprcrypt decrypt 'my very save password' mylocalenv.blob .env
Be careful, the decryptor will override existing files without confirmation.