How to do PGP in Python (generate keys, encrypt/decrypt) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T11:59:26Z http://stackoverflow.com/feeds/question/1020320 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1020320/how-to-do-pgp-in-python-generate-keys-encrypt-decrypt 5 How to do PGP in Python (generate keys, encrypt/decrypt) Greg 2009-06-19T22:28:46Z 2009-07-31T18:26:43Z <p>I'm making a program in Python to be distributed to windows users via an installer.</p> <p>The program needs to be able to download a file every day encrypted with the user's public key and then decrypt it.</p> <p>So I need to find a Python library that will let me generate public and private PGP keys, and also decrypt files encrypted with the public key.</p> <p>Is this something pyCrypto will do (documentation is nebulous)? Are there other pure Python libraries? How about a standalone command line tool in any language?</p> <p>All I saw so far was GNUPG but installing that on Windows does stuff to the registry and throws dll's everywhere, and then I have to worry about whether the user already has this installed, how to backup their existing keyrings, etc. I'd rather just have a python library or command line tool and mange the keys myself.</p> <p>Update: pyME might work but it doesn't seem to be compatible with Python 2.4 which I have to use.</p> http://stackoverflow.com/questions/1020320/how-to-do-pgp-in-python-generate-keys-encrypt-decrypt/1020334#1020334 1 Answer by Evan Fosmark for How to do PGP in Python (generate keys, encrypt/decrypt) Evan Fosmark 2009-06-19T22:33:53Z 2009-06-19T22:33:53Z <p>Some simple web searching turned up these results:</p> <ul> <li><a href="http://pyme.sourceforge.net/" rel="nofollow">Pyme</a></li> <li><a href="http://sourceforge.net/projects/pypgp/" rel="nofollow">Pypgp</a></li> </ul> http://stackoverflow.com/questions/1020320/how-to-do-pgp-in-python-generate-keys-encrypt-decrypt/1037087#1037087 2 Answer by Jon for How to do PGP in Python (generate keys, encrypt/decrypt) Jon 2009-06-24T08:30:10Z 2009-06-24T08:30:10Z <p>PyCrypto supports PGP - albeit you should test it to make sure that it works to your specifications.</p> <p>Although documentation is hard to come by, if you look through Util/test.py (the module test script), you can find a rudimentary example of their PGP support:</p> <pre><code>if verbose: print ' PGP mode:', obj1=ciph.new(password, ciph.MODE_PGP, IV) obj2=ciph.new(password, ciph.MODE_PGP, IV) start=time.time() ciphertext=obj1.encrypt(str) plaintext=obj2.decrypt(ciphertext) end=time.time() if (plaintext!=str): die('Error in resulting plaintext from PGP mode') print_timing(256, end-start, verbose) del obj1, obj2 </code></pre> <p>Futhermore, PublicKey/pubkey.py provides for the following relevant methods:</p> <pre><code>def encrypt(self, plaintext, K) def decrypt(self, ciphertext): def sign(self, M, K): def verify (self, M, signature): def can_sign (self): """can_sign() : bool Return a Boolean value recording whether this algorithm can generate signatures. (This does not imply that this particular key object has the private information required to to generate a signature.) """ return 1 </code></pre> http://stackoverflow.com/questions/1020320/how-to-do-pgp-in-python-generate-keys-encrypt-decrypt/1039320#1039320 1 Answer by Alex Martelli for How to do PGP in Python (generate keys, encrypt/decrypt) Alex Martelli 2009-06-24T16:03:44Z 2009-06-24T16:03:44Z <p><a href="http://pyme.sourceforge.net/" rel="nofollow">PyMe</a> does claim full compatibility with Python 2.4, and I quote:</p> <blockquote> <p>The latest version of PyMe (as of this writing) is v0.8.0. Its binary distribution for Debian was compiled with SWIG v1.3.33 and GCC v4.2.3 for GPGME v1.1.6 and Python v2.3.5, v2.4.4, and v2.5.2 (provided in 'unstable' distribution at the time). Its binary distribution for Windows was compiled with SWIG v1.3.29 and MinGW v4.1 for GPGME v1.1.6 and Python v2.5.2 (although the same binary get installed and works fine in v2.4.2 as well).</p> </blockquote> <p>I'm not sure why you say "it doesn't seem to be compatible with Python 2.4 which I have to use" -- specifics please?</p> <p>And yes it does exist as a semi-Pythonic (SWIGd) wrapper on GPGME -- that's a popular way to develop Python extensions once you have a C library that basically does the job.</p> <p><a href="http://softlayer.dl.sourceforge.net/sourceforge/pypgp/pgp.py" rel="nofollow">PyPgp</a> has a much simpler approach -- that's why it's a single, simple Python script: basically it does nothing more than "shell out" to command-line PGP commands. For example, decryption is just:</p> <pre><code>def decrypt(data): "Decrypt a string - if you have the right key." pw,pr = os.popen2('pgpv -f') pw.write(data) pw.close() ptext = pr.read() return ptext </code></pre> <p>i.e., write the encrypted cyphertext to the standard input of <code>pgpv -f</code>, read pgpv's standard output as the decrypted plaintext.</p> <p>PyPgp is also a very old project, though its simplicity means that making it work with modern Python (e.g., subprocess instead of now-deprecated os.popen2) would not be hard. But you still do need <a href="http://www.pgp.com/" rel="nofollow">PGP</a> installed, or PyPgp won't do anything;-).</p> http://stackoverflow.com/questions/1020320/how-to-do-pgp-in-python-generate-keys-encrypt-decrypt/1042139#1042139 1 Answer by Heikki Toivonen for How to do PGP in Python (generate keys, encrypt/decrypt) Heikki Toivonen 2009-06-25T04:10:59Z 2009-06-26T07:08:39Z <p><a href="http://chandlerproject.org/Projects/MeTooCrypto" rel="nofollow">M2Crypto</a> has PGP module, but I have actually never tried to use it. If you try it, and it works, please let me know (I am the current M2Crypto maintainer). Some links:</p> <ul> <li><a href="http://svn.osafoundation.org/m2crypto/trunk/M2Crypto/PGP/" rel="nofollow">Module sources</a></li> <li><a href="http://svn.osafoundation.org/m2crypto/trunk/demo/pgp/pgpstep.py" rel="nofollow">Demo Script</a></li> <li><a href="http://svn.osafoundation.org/m2crypto/trunk/tests/test%5Fpgp.py" rel="nofollow">unit tests</a></li> </ul> <p><strong>Update:</strong> The PGP module does not provide ways to generate keys, but presumably these could be created with the lower level <a href="http://www.heikkitoivonen.net/m2crypto/api/M2Crypto.RSA-module.html" rel="nofollow">RSA</a>, <a href="http://www.heikkitoivonen.net/m2crypto/api/M2Crypto.DSA-module.html" rel="nofollow">DSA</a> etc. modules. I don't know PGP insides, so you'd have to dig up the details. Also, if you know how to generate these using openssl command line commands, it should be reasonably easy to convert that to M2Crypto calls.</p> http://stackoverflow.com/questions/1020320/how-to-do-pgp-in-python-generate-keys-encrypt-decrypt/1053752#1053752 3 Answer by Vinay Sajip for How to do PGP in Python (generate keys, encrypt/decrypt) Vinay Sajip 2009-06-27T22:12:35Z 2009-06-27T22:23:34Z <p>You don't need <code>PyCrypto</code> or <code>PyMe</code>, fine though those packages may be - you will have all kinds of problems building under Windows. Instead, why not avoid the rabbit-holes and do what I did? Use <code>gnupg 1.4.9</code>. You don't need to do a full installation on end-user machines - just <code>gpg.exe</code> and <code>iconv.dll</code> from the distribution are sufficient, and you just need to have them somewhere in the path or accessed from your Python code using a full pathname. No changes to the registry are needed, and everything (executables and data files) can be confined to a single folder if you want.</p> <p>There's a module <code>GPG.py</code> which was originally written by Andrew Kuchling, improved by Richard Jones and improved further by Steve Traugott. It's available <a href="http://trac.t7a.org/isconf/file/trunk/lib/python/isconf/GPG.py" rel="nofollow">here</a>, but as-is it's not suitable for Windows because it uses <code>os.fork()</code>. Although originally part of <code>PyCrypto</code>, <strong>it is completely independent of the other parts of <code>PyCrypto</code> and needs only gpg.exe/iconv.dll in order to work</strong>.</p> <p>I have a version (<code>gnupg.py</code>) derived from Traugott's <code>GPG.py</code>, which uses the <code>subprocess</code> module. It works fine under Windows, at least for my purposes - I use it to do the following:</p> <ul> <li>Key management - generation, listing, export etc.</li> <li>Import keys from an external source (e.g. public keys received from a partner company)</li> <li>Encrypt and decrypt data</li> <li>Sign and verify signatures</li> </ul> <p>The module I've got is not ideal to show right now, because it includes some other stuff which shouldn't be there - which means I can't release it as-is at the moment. At some point, perhaps in the next couple of weeks, I hope to be able to tidy it up, add some more unit tests (I don't have any unit tests for sign/verify, for example) and release it (either under the original <code>PyCrypto</code> licence or a similar commercial-friendly license). If you can't wait, go with Traugott's module and modify it yourself - it wasn't too much work to make it work with the <code>subprocess</code> module.</p> <p>This approach was a lot less painful than the others (e.g. <code>SWIG</code>-based solutions, or solutions which require building with <code>MinGW</code>/<code>MSYS</code>), which I considered and experimented with. I've used the same (<code>gpg.exe</code>/<code>iconv.dll</code>) approach with systems written in other languages, e.g. <code>C#</code>, with equally painless results.</p> <p>P.S. It works with Python 2.4 as well as Python 2.5 and later. Not tested with other versions, though I don't foresee any problems.</p> http://stackoverflow.com/questions/1020320/how-to-do-pgp-in-python-generate-keys-encrypt-decrypt/1214097#1214097 0 Answer by mmutz for How to do PGP in Python (generate keys, encrypt/decrypt) mmutz 2009-07-31T18:26:43Z 2009-07-31T18:26:43Z <p>As other have noted, PyMe is the canonical solution for this, since it's based on GpgME, which is part of the GnuPG ecosystem.</p> <p>For Windows, I strongly recommend to use <a href="http://www.gpg4win.org" rel="nofollow">Gpg4win</a> as the GnuPG distribution, for two reasons:</p> <p>It's based on GnuPG 2, which, among other things, includes <code>gpg2.exe</code>, which can (finally, I might add :) start <code>gpg-agent.exe</code> on-demand (gpg v1.x can't).</p> <p>And secondly, it's the only official Windows build by the GnuPG developers. E.g. it's entirely cross-compiled from Linux to Windows, so not a iota of non-free software was used in preparing it (quite important for a security suite :).</p>