diff options
| author | Simeon Simeonov | 2020-03-26 15:24:34 +0100 |
|---|---|---|
| committer | Simeon Simeonov | 2020-03-26 15:24:34 +0100 |
| commit | 0a226b690b31ef31a92aea043ee8fe082b316633 (patch) | |
| tree | f3bec3676ddfd19b68b11cadd47c7fb79a336851 /otp2289/__init__.py | |
| parent | 75bebab025aa03a2f1790d7d15b9c8264ab28fed (diff) | |
Add support for accepting a challenge string in the generator
Diffstat (limited to 'otp2289/__init__.py')
| -rw-r--r-- | otp2289/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/otp2289/__init__.py b/otp2289/__init__.py index d2f6386..82c1413 100644 --- a/otp2289/__init__.py +++ b/otp2289/__init__.py | |||
| @@ -3,6 +3,7 @@ | |||
| 3 | 3 | ||
| 4 | from .generator import (OTP_ALGO_MD5, | 4 | from .generator import (OTP_ALGO_MD5, |
| 5 | OTP_ALGO_SHA1, | 5 | OTP_ALGO_SHA1, |
| 6 | OTPChallengeException, | ||
| 6 | OTPGenerator, | 7 | OTPGenerator, |
| 7 | OTPGeneratorException) | 8 | OTPGeneratorException) |
| 8 | 9 | ||
| @@ -24,5 +25,6 @@ VERSION = tuple(map(int_or_str, __version__.split('.'))) | |||
| 24 | 25 | ||
| 25 | __all__ = ['OTP_ALGO_MD5', | 26 | __all__ = ['OTP_ALGO_MD5', |
| 26 | 'OTP_ALGO_SHA1', | 27 | 'OTP_ALGO_SHA1', |
| 28 | 'OTPChallengeException', | ||
| 27 | 'OTPGenerator', | 29 | 'OTPGenerator', |
| 28 | 'OTPGeneratorException'] | 30 | 'OTPGeneratorException'] |
