Blame lang/python/examples/testCMSgetkey.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) 2008 Bernhard Reiter <bernhard@intevation.de>
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 6c01f9
Packit Service 672cf4
"""A test applicaton for the CMS protocol."""
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
Packit Service 672cf4
if len(sys.argv) != 2:
Packit Service 672cf4
    sys.exit("fingerprint or unique key ID for gpgme_get_key()")
Packit Service 672cf4
Packit Service 672cf4
with gpg.Context(protocol=gpg.constants.protocol.CMS) as c:
Packit Service 672cf4
    key = c.get_key(sys.argv[1])
Packit Service 672cf4
Packit Service 672cf4
    print("got key: ", key.subkeys[0].fpr)
Packit Service 672cf4
    for uid in key.uids:
Packit Service 672cf4
        print(uid.uid)