diff options
| author | Simeon Simeonov | 2020-03-30 21:57:53 +0200 |
|---|---|---|
| committer | Simeon Simeonov | 2020-03-30 21:57:53 +0200 |
| commit | 2a6299c32e0baf3df06f8e6d6bc8695b951d630d (patch) | |
| tree | b4bd18092822db0fd10411e49dc6e05d1a60e697 /otp2289/__init__.py | |
| parent | a4c050e34ce462f477bc3671e272e244e2792e00 (diff) | |
Implement OTPState in the server module
Diffstat (limited to 'otp2289/__init__.py')
| -rw-r--r-- | otp2289/__init__.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/otp2289/__init__.py b/otp2289/__init__.py index 44c39bb..2fba4ea 100644 --- a/otp2289/__init__.py +++ b/otp2289/__init__.py | |||
| @@ -29,6 +29,7 @@ from .generator import (OTP_ALGO_MD5, | |||
| 29 | OTPChallengeException, | 29 | OTPChallengeException, |
| 30 | OTPGenerator, | 30 | OTPGenerator, |
| 31 | OTPGeneratorException) | 31 | OTPGeneratorException) |
| 32 | from .server import OTPInvalidResponse, OTPState, OTPStateException | ||
| 32 | 33 | ||
| 33 | 34 | ||
| 34 | __author__ = 'Simeon Simeonov' | 35 | __author__ = 'Simeon Simeonov' |
| @@ -50,4 +51,7 @@ __all__ = ['OTP_ALGO_MD5', | |||
| 50 | 'OTP_ALGO_SHA1', | 51 | 'OTP_ALGO_SHA1', |
| 51 | 'OTPChallengeException', | 52 | 'OTPChallengeException', |
| 52 | 'OTPGenerator', | 53 | 'OTPGenerator', |
| 53 | 'OTPGeneratorException'] | 54 | 'OTPGeneratorException', |
| 55 | 'OTPInvalidResponse', | ||
| 56 | 'OTPState', | ||
| 57 | 'OTPStateException'] | ||
