Blame lang/python/examples/decryption-filter.py

Packit d7e8d0
#!/usr/bin/env python
Packit d7e8d0
#
Packit Service 30b792
# Copyright (C) 2016, 2018 g10 Code GmbH
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
"""A decryption filter
Packit d7e8d0
Packit Service 30b792
This demonstrates decryption using gpg in three lines of code.  To
Packit d7e8d0
be used like this:
Packit d7e8d0
Packit Service 30b792
./decryption-filter.py < message.gpg > message.plain
Packit d7e8d0
Packit d7e8d0
"""
Packit d7e8d0
Packit d7e8d0
from __future__ import absolute_import, print_function, unicode_literals
Packit d7e8d0
Packit d7e8d0
import sys
Packit d7e8d0
import gpg
Packit Service 30b792
Packit Service 30b792
del absolute_import, print_function, unicode_literals
Packit Service 30b792
Packit d7e8d0
gpg.Context().decrypt(sys.stdin, sink=sys.stdout)