diff options
author | Hubert Chathi <hubert@uhoreg.ca> | 2019-04-08 17:19:47 -0400 |
---|---|---|
committer | Hubert Chathi <hubert@uhoreg.ca> | 2019-04-08 17:19:47 -0400 |
commit | 74e9300daf0b5537749d5bbe6500281ba19d6e88 (patch) | |
tree | 4a1d2645268b2c2ed7294d4892e7724fa04d68d8 /python/olm/__init__.py | |
parent | ebc156e7c272e08e375c3e704651b179541e078b (diff) |
add python bindings for PK signing
Diffstat (limited to 'python/olm/__init__.py')
-rw-r--r-- | python/olm/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/python/olm/__init__.py b/python/olm/__init__.py index 7b7423b..1168886 100644 --- a/python/olm/__init__.py +++ b/python/olm/__init__.py @@ -40,6 +40,8 @@ from .pk import ( PkMessage, PkEncryption, PkDecryption, + PkSigning, PkEncryptionError, - PkDecryptionError + PkDecryptionError, + PkSigningError ) |