Blame lang/python/examples/sign.py

Packit d7e8d0
#!/usr/bin/env python
Packit d7e8d0
#
Packit d7e8d0
# Copyright (C) 2016 g10 Code GmbH
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 d7e8d0
# along with this program; if not, see <http://www.gnu.org/licenses/>.
Packit d7e8d0
Packit d7e8d0
from __future__ import absolute_import, print_function, unicode_literals
Packit d7e8d0
del absolute_import, print_function, unicode_literals
Packit d7e8d0
Packit d7e8d0
import sys
Packit d7e8d0
import gpg
Packit d7e8d0
from gpg.constants.sig import mode
Packit d7e8d0
Packit d7e8d0
with gpg.Context() as c:
Packit d7e8d0
    signed, _ = c.sign(b"Test message", mode=mode.CLEAR)
Packit d7e8d0
    sys.stdout.buffer.write(signed)