Blame lang/python/examples/signverify.py

Packit Service 672cf4
#!/usr/bin/env python
Packit Service 672cf4
#
Packit Service 672cf4
# Copyright (C) 2016 g10 Code GmbH
Packit Service 672cf4
# Copyright (C) 2004,2008 Igor Belyi <belyi@users.sourceforge.net>
Packit Service 672cf4
#
Packit Service 672cf4
# This program is free software; you can redistribute it and/or modify
Packit Service 672cf4
# it under the terms of the GNU General Public License as published by
Packit Service 672cf4
# the Free Software Foundation; either version 2 of the License, or
Packit Service 672cf4
# (at your option) any later version.
Packit Service 672cf4
#
Packit Service 672cf4
# This program is distributed in the hope that it will be useful, but
Packit Service 672cf4
# WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 672cf4
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 672cf4
# General Public License for more details.
Packit Service 672cf4
#
Packit Service 672cf4
# You should have received a copy of the GNU General Public License
Packit Service 6c01f9
# along with this program; if not, see <http://www.gnu.org/licenses/>.
Packit Service 672cf4
Packit Service 672cf4
# Sample of unattended signing/verifying of a message.
Packit Service 672cf4
# It uses keys for joe+gpg@example.org generated by genkey.py script
Packit Service 672cf4
Packit Service 672cf4
from __future__ import absolute_import, print_function, unicode_literals
Packit Service 6c01f9
del absolute_import, print_function, unicode_literals
Packit Service 672cf4
Packit Service 672cf4
import sys
Packit Service 672cf4
import gpg
Packit Service 672cf4
from gpg.constants.sig import mode
Packit Service 672cf4
Packit Service 672cf4
user = "joe+gpg"
Packit Service 672cf4
Packit Service 672cf4
with gpg.Context(pinentry_mode=gpg.constants.PINENTRY_MODE_LOOPBACK) as c:
Packit Service 672cf4
    keys = list(c.keylist(user))
Packit Service 672cf4
    if len(keys) == 0:
Packit Service 672cf4
        sys.exit("No key matching {}.".format(user))
Packit Service 672cf4
Packit Service 672cf4
    c.signers = keys[:1]
Packit Service 672cf4
    c.set_passphrase_cb(lambda *args: "Crypt0R0cks")
Packit Service 672cf4
    signed_data, _ = c.sign(b"Test message", mode=mode.CLEAR)
Packit Service 672cf4
Packit Service 672cf4
    data, result = c.verify(signed_data, verify=keys[:1])
Packit Service 672cf4
    print("Data: {!r}\nSignature: {!s}".format(data, result.signatures[0]))