views:

70

answers:

3

Is there a way to use python to encrypt/decrypt a file? Something like Axcrypt Thanks in advance

A: 

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

townsean
+1  A: 

How about this SO Q&A, which talks about encrypting/decrypting with PGP?

cape1232