Symetric file encrypter/decrypter
npm install bluprcryptThe 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.
You can use the standalone binary bluprcrypt or with the blupr cli tool
Use the following command to encrypt your file
bluprcrypt encrypt {password} {source filepath} {destination filepath}
``bash`
$ 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
Use the following command to decrypt your file
bluprcrypt decrypt {password} {source filepath} {destination filepath}
`bash``
$ bluprcrypt decrypt 'my very save password' mylocalenv.blob .env
Be careful, the decryptor will override existing files without confirmation.