From 32163821583dd638bafc856637dc83e173ca931e Mon Sep 17 00:00:00 2001 From: Dmitri Bogomolov <4glitch@gmail.com> Date: Tue, 23 Nov 2021 21:23:01 +0200 Subject: [PATCH] Fix typo in pyelliptic.hash --- src/pyelliptic/hash.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyelliptic/hash.py b/src/pyelliptic/hash.py index 70c9a6ce..92f26bf0 100644 --- a/src/pyelliptic/hash.py +++ b/src/pyelliptic/hash.py @@ -35,7 +35,7 @@ def equals(a, b): def hmac_sha256(k, m): """ - Compute the key and the message with HMAC SHA5256 + Compute the key and the message with HMAC SHA256 """ key = OpenSSL.malloc(k, len(k)) d = OpenSSL.malloc(m, len(m))