I want to encrypt few files using python what is the best way i can use gpg but are there any standarad/famous python libraries?
|
|
|||||
|
|
|
PyCrypto seems to be the best one around. |
||||||||||
|
|
|
I use pyOpenSSL, its a python binding for OpenSSL which has been around for a long time and is very well tested. I did some benchmarks for my application, which is very crypto intensive and it won hands down against pyCrypto. YMMV. |
||
|
|
|
|
I like pyDes (http://twhiteman.netfirms.com/des.html). It's not the quickest, but it's pure Python and works very well for small amounts of encrypted data. |
||
|
|
|
|
I use GPGme The main strength of GPGme is that it read and writes files at the OpenPGP standard (RFC 4880) which can be important if you want to interoperate with other PGP programs. It has a Python interface. Warning: it is a low-level interface, not very Pythonic. If you read French, see examples. Here is one, to check a signature:
|
|||
|
|
|
|
See Google's Keyczar project, which provides a nice set of interfaces to PyCrypto's functionality. |
||
|
|
|
|
Try KeyCzar Very easy to implement. |
||
|
|
