Encrypt / decrypt a file with python

Is there a way to use python to encrypt / decrypt a file (something like Axcrypt)?

+4
source share
3 answers

What about this SO Q & A , which talks about encryption / decryption using PGP?

+1
source

Go here in python docs for modules available for encryption: http://docs.python.org/library/crypto.html

0
source

All Articles