https://github.com/markus-beuckelmann/aescrypt
aescrypt is a small command line tool to encrypt/decrypt files and directories with the well-established AES-256-CBC algorithm.
https://github.com/markus-beuckelmann/aescrypt
aes-encryption aescrypt cryptography docopt pycrypto python
Last synced: 19 days ago
JSON representation
aescrypt is a small command line tool to encrypt/decrypt files and directories with the well-established AES-256-CBC algorithm.
- Host: GitHub
- URL: https://github.com/markus-beuckelmann/aescrypt
- Owner: markus-beuckelmann
- License: gpl-3.0
- Created: 2015-10-04T15:21:55.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-12T20:55:58.000Z (over 10 years ago)
- Last Synced: 2023-10-24T20:00:22.798Z (about 2 years ago)
- Topics: aes-encryption, aescrypt, cryptography, docopt, pycrypto, python
- Language: Python
- Homepage:
- Size: 117 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
AESCrypt
=======
___aescrypt___ is a small command line tool to encrypt/decrypt files and directories with the well-established AES-256-CBC algorithm.
Examples
--------
* Encryption: `aescrypt encrypt foo.txt`
* Decryption: `aescrypt decrypt foo.txt.aes`
Type `aescrypt --help` for more information on the usage.
Requirements
------------
Please install the following Python packages: [docopt](https://pypi.python.org/pypi/docopt), [pycrypto](https://pypi.python.org/pypi/pycrypto). You can do that by running:
`sudo pip install -r requirements.txt`
License
-------
**GNU General Public License (GPLv3)**, see `LICENSE.txt` for further details.