File: __init__.py

package info (click to toggle)
python-securesystemslib 1.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,316 kB
  • sloc: python: 5,319; sh: 38; makefile: 5
file content (23 lines) | stat: -rw-r--r-- 754 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""
<Module Name>
  gpg

<Author>
  Santiago Torres-Arias <santiago@nyu.edu>

<Started>
  Nov 15, 2017

<Copyright>
  See LICENSE for licensing information.

<Purpose>
  This module was written due to the lack of other python (such as pygpg)
  modules that can provide an abstraction to the RFC4480 encoded messages from
  GPG. The closest candidate we could find was the python bindings for gpgme,
  we oped to use a Popen-based python-only construction given that gpgme is
  often shipped separately and other popular tools using gpg (e.g., git) don't
  use these bindings either. This is because users willing to use gpg signing
  are almost guaranteed to have gpg installed, yet the same assumption can't be
  made for the gpgme python bindings.
"""