diff options
author | Damir Jelić <poljar@termina.org.uk> | 2019-04-02 12:56:06 +0200 |
---|---|---|
committer | Damir Jelić <poljar@termina.org.uk> | 2019-04-02 12:56:59 +0200 |
commit | fcfa5f12a4cd482973fdf03000af4a26a360dc2e (patch) | |
tree | e14fe09246b0eba099c331bee69c0edfdc71c646 /python/olm/__init__.py | |
parent | 446628753b6283f6dcbf27589b2c18f93c71768b (diff) |
python: Expose the sha256() function in the utilities.
Signed-off-by: Damir Jelić <poljar@termina.org.uk>
Diffstat (limited to 'python/olm/__init__.py')
-rw-r--r-- | python/olm/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/olm/__init__.py b/python/olm/__init__.py index fe3e199..9ac45b0 100644 --- a/python/olm/__init__.py +++ b/python/olm/__init__.py @@ -21,7 +21,7 @@ Olm Python bindings | © Copyright 2015-2017 by OpenMarket Ltd | © Copyright 2018 by Damir Jelić """ -from .utility import ed25519_verify, OlmVerifyError +from .utility import ed25519_verify, OlmVerifyError, OlmHashError, sha256 from .account import Account, OlmAccountError from .session import ( Session, |