Page 1 of 1

pyAesCrypt

Posted: Sun Jan 03, 2016 1:02 pm
by m.bellaccini
Hi all!
For anyone that may be interested, I wrote a Python 3 script that encrypts/decrypts files in AES Crypt file format (version 2 only) using pycrypto cryptographic primitives.
Here is the pypi page:
https://pypi.python.org/pypi/pyAesCrypt
You can get it through pip with:
sudo pip3 install pyAesCrypt
or directly download it from the above link...

Cheers

Marco Bellaccini

Re: pyAesCrypt

Posted: Sat Jan 21, 2017 12:09 pm
by m.bellaccini
Hi all!
A new, improved, pyAesCrypt release is out!
https://pypi.python.org/pypi/pyAesCrypt
https://github.com/marcobellaccini/pyAesCrypt
New in this release (v0.2):
  • Modularized pyAesCrypt (and now the script calls the module for operations)
  • Improved decryption speed (patch by Ben Fisher)
  • Improved encryption speed too
  • Unittests
  • Travis-CI integration
Cheers

Marco

Re: pyAesCrypt

Posted: Sat Aug 26, 2017 11:12 am
by m.bellaccini
Hi!
pyAesCrypt 0.3 is out!
https://pypi.python.org/pypi/pyAesCrypt
https://github.com/marcobellaccini/pyAesCrypt
Now it relies on PyCA Cryptography instead of pycrypto for crypto primitives.

Have a nice summer!

Marco