From 0a226b690b31ef31a92aea043ee8fe082b316633 Mon Sep 17 00:00:00 2001 From: Simeon Simeonov Date: Thu, 26 Mar 2020 15:24:34 +0100 Subject: Add support for accepting a challenge string in the generator --- otp2289/__init__.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'otp2289/__init__.py') 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 @@ from .generator import (OTP_ALGO_MD5, OTP_ALGO_SHA1, + OTPChallengeException, OTPGenerator, OTPGeneratorException) @@ -24,5 +25,6 @@ VERSION = tuple(map(int_or_str, __version__.split('.'))) __all__ = ['OTP_ALGO_MD5', 'OTP_ALGO_SHA1', + 'OTPChallengeException', 'OTPGenerator', 'OTPGeneratorException'] -- cgit v1.3