A Python CLI package that provides functionality to encrypt and decrypt files or folders using symmetric encryption.
- Encrypt a file or folder
- Decrypt a file or folder
- Uses the Fernet encryption algorithm from the
cryptographylibrary
Install the package:
$ pip install securoEncrypt a file:
$ securo encrypt /path/to/file.txtEncrypt a folder:
$ securo encrypt /path/to/folderDecrypt a file:
$ securo decrypt /path/to/file.txtDecrypt a folder:
$ securo decrypt /path/to/folderNote: When prompted, enter the encryption key. The same key should be used for encryption and decryption.