diff options
author | Justus Winter <[email protected]> | 2017-02-17 14:44:35 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2017-02-17 15:28:00 +0000 |
commit | 48634e651fcd02431c0518d42ada1f3b402feb2c (patch) | |
tree | 1bb947a1e09e96982f44d47d15dd3d6b5a825964 /lang/python/tests/Makefile.am | |
parent | python: Fix teardown of ephemeral contexts. (diff) | |
download | gpgme-48634e651fcd02431c0518d42ada1f3b402feb2c.tar.gz gpgme-48634e651fcd02431c0518d42ada1f3b402feb2c.zip |
python: Support quick key signing.
* NEWS: Update.
* doc/gpgme.texi (gpgme_op_keysign): Fix the description of the
'expire' argument.
* lang/python/gpg/constants/__init__.py: Import new file.
* lang/python/gpg/constants/keysign.py: New file.
* lang/python/gpg/core.py (Context.key_sign): New function.
* lang/python/tests/Makefile.am (py_tests): Add new test.
* lang/python/tests/t-quick-key-signing.py: New test.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'lang/python/tests/Makefile.am')
-rw-r--r-- | lang/python/tests/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/python/tests/Makefile.am b/lang/python/tests/Makefile.am index 1d5e1db5..7251cd30 100644 --- a/lang/python/tests/Makefile.am +++ b/lang/python/tests/Makefile.am @@ -53,7 +53,8 @@ py_tests = t-wrapper.py \ t-protocol-assuan.py \ t-quick-key-creation.py \ t-quick-subkey-creation.py \ - t-quick-key-manipulation.py + t-quick-key-manipulation.py \ + t-quick-key-signing.py XTESTS = initial.py $(py_tests) final.py EXTRA_DIST = support.py $(XTESTS) encrypt-only.asc sign-only.asc \ |