Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PGP signatures from Python?

What is the easiest way to create and verify PGP/GPG signatures from within a Python application?

I can call pgp or gpg using subprocess and parse the output, but I was looking for a way that didn't require an external program to be installed (my application is cross-platform mac/windows/unix).

like image 447
dF. Avatar asked Sep 02 '08 16:09

dF.


1 Answers

I think GPGME and the PyMe Python wrapper should do what you need.

like image 96
Carl Meyer Avatar answered Oct 12 '22 12:10

Carl Meyer