diff options
author | Hubert Chathi <hubert@uhoreg.ca> | 2019-04-12 19:21:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-12 19:21:17 -0400 |
commit | 0d0169c839d7c7956c300d36b1757a174b059c44 (patch) | |
tree | d2fb957b6059c604e73acdc1fe48a989c0c87e39 /python/olm/__init__.py | |
parent | b12fe0aeb3cbee8c4067a4fd229a7fb54de6781b (diff) | |
parent | ab6e8d5086894ae73c33b124a0c04df4b0195a46 (diff) |
Merge pull request #86 from matrix-org/add_python_pk_signing
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 d92b0ab..26257a5 100644 --- a/python/olm/__init__.py +++ b/python/olm/__init__.py @@ -40,7 +40,9 @@ from .pk import ( PkMessage, PkEncryption, PkDecryption, + PkSigning, PkEncryptionError, - PkDecryptionError + PkDecryptionError, + PkSigningError ) from .sas import Sas, OlmSasError |