First version of bcrypt

This commit is contained in:
Helder Eijs 2019-08-14 10:43:05 +02:00
parent c33fcd2c66
commit ca975e96ad
8 changed files with 451 additions and 23 deletions

View file

@ -43,7 +43,7 @@ from Crypto.Random import get_random_bytes
__all__ = ['new', 'HMAC']
class HMAC:
class HMAC(object):
"""An HMAC hash object.
Do not instantiate directly. Use the :func:`new` function.