https://github.com/iunary/securo
Encrypt and descrypt files and folders using a symmetric encryption
https://github.com/iunary/securo
cipher decryption encrypt encryption fernet fileencrtption python3 secrets symmetric-key-cryptography
Last synced: 8 months ago
JSON representation
Encrypt and descrypt files and folders using a symmetric encryption
- Host: GitHub
- URL: https://github.com/iunary/securo
- Owner: iunary
- License: mit
- Created: 2023-06-09T13:39:05.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-13T11:45:55.000Z (over 2 years ago)
- Last Synced: 2024-12-28T18:57:51.374Z (9 months ago)
- Topics: cipher, decryption, encrypt, encryption, fernet, fileencrtption, python3, secrets, symmetric-key-cryptography
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# securo
A Python CLI package that provides functionality to encrypt and decrypt files or folders using symmetric encryption.
## Features
- Encrypt a file or folder
- Decrypt a file or folder
- Uses the Fernet encryption algorithm from the `cryptography` library## Installation
Install the package:
```shell
$ pip install securo
```## Usage
Encrypt a file:
```shell
$ securo encrypt /path/to/file.txt
```Encrypt a folder:
```shell
$ securo encrypt /path/to/folder
```Decrypt a file:
```shell
$ securo decrypt /path/to/file.txt
```Decrypt a folder:
```shell
$ securo decrypt /path/to/folder
```Note: When prompted, enter the encryption key. The same key should be used for encryption and decryption.