Fix typo in pyelliptic.hash

This commit is contained in:
Dmitri Bogomolov 2021-11-23 21:23:01 +02:00
parent 6fa407aefe
commit 3216382158
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13

View File

@ -35,7 +35,7 @@ def equals(a, b):
def hmac_sha256(k, m): 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)) key = OpenSSL.malloc(k, len(k))
d = OpenSSL.malloc(m, len(m)) d = OpenSSL.malloc(m, len(m))