From f4ba16b31ea282d0787a40be3f37b951584143a1 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Tue, 10 May 2016 13:19:26 +0200 Subject: python: Rename bindings. -- Signed-off-by: Justus Winter --- lang/python/examples/verifydetails.py | 100 ++++++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100755 lang/python/examples/verifydetails.py (limited to 'lang/python/examples/verifydetails.py') diff --git a/lang/python/examples/verifydetails.py b/lang/python/examples/verifydetails.py new file mode 100755 index 00000000..0d47ba54 --- /dev/null +++ b/lang/python/examples/verifydetails.py @@ -0,0 +1,100 @@ +#!/usr/bin/env python3 +# initial 20080123 build from the example: +# very simple - probably INCOMPLETE +# 20080703 Bernhard +# added second usage for detached signatures. +# added output of signature.summary (another bitfield) +# printing signature bitfield in hex format +# +# $Id$ +# +# Copyright (C) 2004,2008 Igor Belyi +# Copyright (c) 2008 Bernhard Reiter +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +import sys +from pyme import core, callbacks, constants +from pyme.constants.sig import mode +from pyme.constants import protocol + +def print_engine_infos(): + print("gpgme version:", core.check_version(None)) + print("engines:") + + for engine in core.get_engine_info(): + print(engine.file_name, engine.version) + + for proto in [protocol.OpenPGP, protocol.CMS]: + print(core.get_protocol_name(proto), core.engine_check_version(proto)) + + +def verifyprintdetails(sigfilename, filefilename=None): + """Verify a signature, print a lot of details.""" + c = core.Context() + + # Create Data with signed text. + sig2 = core.Data(file=sigfilename) + if filefilename: + file2 = core.Data(file=filefilename) + plain2 = None + else: + file2 = None + plain2 = core.Data() + + # Verify. + c.op_verify(sig2, file2, plain2) + result = c.op_verify_result() + + # List results for all signatures. Status equal 0 means "Ok". + index = 0 + for sign in result.signatures: + index += 1 + print("signature", index, ":") + print(" summary: %#0x" % (sign.summary)) + print(" status: %#0x" % (sign.status)) + print(" timestamp: ", sign.timestamp) + print(" fingerprint:", sign.fpr) + print(" uid: ", c.get_key(sign.fpr, 0).uids[0].uid) + + # Print "unsigned" text if inline signature + if plain2: + #Rewind since verify put plain2 at EOF. + plain2.seek(0,0) + print("\n", plain2.read()) + +def main(): + print_engine_infos() + + print() + + argc= len(sys.argv) + if argc < 2 or argc > 3: + print("need a filename for inline signature") + print("or two filename for detached signature and file to check") + sys.exit(1) + + if argc == 2: + print("trying to verify file: " + sys.argv[1].encode('utf-8')) + verifyprintdetails(sys.argv[1].encode('utf-8')) + if argc == 3: + print("trying to verify signature %s for file %s" \ + % (sys.argv[1].encode('utf-8'), sys.argv[2].encode('utf-8'))) + + verifyprintdetails(sys.argv[1].encode('utf-8'), sys.argv[2].encode('utf-8')) + +if __name__ == "__main__": + main() + + -- cgit v1.2.3 From aade53a12b9716997684b872bc2ac87229f73fb3 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Tue, 10 May 2016 13:30:30 +0200 Subject: python: Delete trailing whitespace. -- Signed-off-by: Justus Winter --- lang/python/examples/verifydetails.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'lang/python/examples/verifydetails.py') diff --git a/lang/python/examples/verifydetails.py b/lang/python/examples/verifydetails.py index 0d47ba54..a8d840e7 100755 --- a/lang/python/examples/verifydetails.py +++ b/lang/python/examples/verifydetails.py @@ -96,5 +96,3 @@ def main(): if __name__ == "__main__": main() - - -- cgit v1.2.3 From 10328324c8fc9725cd0c885eaebfc80dc32c1ff6 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Tue, 17 May 2016 14:15:21 +0200 Subject: python: Clean up examples. * lang/python/examples/delkey.py: Clean up example. * lang/python/examples/encrypt-to-all.py: Likewise. * lang/python/examples/genkey.py: Likewise. * lang/python/examples/inter-edit.py: Likewise. * lang/python/examples/sign.py: Likewise. * lang/python/examples/signverify.py: Likewise. * lang/python/examples/simple.py: Likewise. * lang/python/examples/t-edit.py: Likewise. * lang/python/examples/verifydetails.py: Likewise. * lang/python/pyme/__init__.py: Likewise. Signed-off-by: Justus Winter --- lang/python/examples/verifydetails.py | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) (limited to 'lang/python/examples/verifydetails.py') diff --git a/lang/python/examples/verifydetails.py b/lang/python/examples/verifydetails.py index a8d840e7..0aa6f15b 100755 --- a/lang/python/examples/verifydetails.py +++ b/lang/python/examples/verifydetails.py @@ -25,8 +25,8 @@ # along with this program. If not, see . import sys -from pyme import core, callbacks, constants -from pyme.constants.sig import mode +import os +from pyme import core from pyme.constants import protocol def print_engine_infos(): @@ -58,9 +58,7 @@ def verifyprintdetails(sigfilename, filefilename=None): result = c.op_verify_result() # List results for all signatures. Status equal 0 means "Ok". - index = 0 - for sign in result.signatures: - index += 1 + for index, sign in enumerate(result.signatures): print("signature", index, ":") print(" summary: %#0x" % (sign.summary)) print(" status: %#0x" % (sign.status)) @@ -71,8 +69,9 @@ def verifyprintdetails(sigfilename, filefilename=None): # Print "unsigned" text if inline signature if plain2: #Rewind since verify put plain2 at EOF. - plain2.seek(0,0) - print("\n", plain2.read()) + plain2.seek(0, os.SEEK_SET) + print("\n") + sys.stdout.buffer.write(plain2.read()) def main(): print_engine_infos() @@ -86,13 +85,13 @@ def main(): sys.exit(1) if argc == 2: - print("trying to verify file: " + sys.argv[1].encode('utf-8')) - verifyprintdetails(sys.argv[1].encode('utf-8')) + print("trying to verify file: " + sys.argv[1]) + verifyprintdetails(sys.argv[1]) if argc == 3: print("trying to verify signature %s for file %s" \ - % (sys.argv[1].encode('utf-8'), sys.argv[2].encode('utf-8'))) + % (sys.argv[1], sys.argv[2])) - verifyprintdetails(sys.argv[1].encode('utf-8'), sys.argv[2].encode('utf-8')) + verifyprintdetails(sys.argv[1], sys.argv[2]) if __name__ == "__main__": main() -- cgit v1.2.3