Blame lang/python/examples/genkey.py

Packit d7e8d0
#!/usr/bin/env python
Packit d7e8d0
#
Packit d7e8d0
# Copyright (C) 2016 g10 Code GmbH
Packit d7e8d0
# Copyright (C) 2004 Igor Belyi <belyi@users.sourceforge.net>
Packit d7e8d0
# Copyright (C) 2002 John Goerzen <jgoerzen@complete.org>
Packit d7e8d0
#
Packit d7e8d0
# This program is free software; you can redistribute it and/or modify
Packit d7e8d0
# it under the terms of the GNU General Public License as published by
Packit d7e8d0
# the Free Software Foundation; either version 2 of the License, or
Packit d7e8d0
# (at your option) any later version.
Packit d7e8d0
#
Packit d7e8d0
# This program is distributed in the hope that it will be useful, but
Packit d7e8d0
# WITHOUT ANY WARRANTY; without even the implied warranty of
Packit d7e8d0
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit d7e8d0
# General Public License for more details.
Packit d7e8d0
#
Packit d7e8d0
# You should have received a copy of the GNU General Public License
Packit Service 30b792
# along with this program; if not, see <https://www.gnu.org/licenses/>.
Packit d7e8d0
Packit d7e8d0
from __future__ import absolute_import, print_function, unicode_literals
Packit d7e8d0
Packit d7e8d0
import gpg
Packit d7e8d0
Packit Service 30b792
del absolute_import, print_function, unicode_literals
Packit Service 30b792
Packit d7e8d0
# This is the example from the GPGME manual.
Packit d7e8d0
Packit d7e8d0
parms = """<GnupgKeyParms format="internal">
Packit d7e8d0
Key-Type: RSA
Packit d7e8d0
Key-Length: 2048
Packit d7e8d0
Subkey-Type: RSA
Packit d7e8d0
Subkey-Length: 2048
Packit d7e8d0
Name-Real: Joe Tester
Packit d7e8d0
Name-Comment: with stupid passphrase
Packit d7e8d0
Name-Email: joe+gpg@example.org
Packit d7e8d0
Passphrase: Crypt0R0cks
Packit d7e8d0
Expire-Date: 2020-12-31
Packit d7e8d0
</GnupgKeyParms>
Packit d7e8d0
"""
Packit d7e8d0
Packit d7e8d0
with gpg.Context() as c:
Packit d7e8d0
    c.set_progress_cb(gpg.callbacks.progress_stdout)
Packit d7e8d0
    c.op_genkey(parms, None, None)
Packit d7e8d0
    print("Generated key with fingerprint {0}.".format(
Packit d7e8d0
        c.op_genkey_result().fpr))