Commit 6dccec2b authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Fix Blake block length



PR#4514

Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
parent b1b3e14f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ static const EVP_MD blake2b_md = {
    final,
    NULL,
    NULL,
    0,
    BLAKE2B_BLOCKBYTES,
    sizeof(EVP_MD *) + sizeof(BLAKE2B_CTX),
};

+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ static const EVP_MD blake2s_md = {
    final,
    NULL,
    NULL,
    0,
    BLAKE2S_BLOCKBYTES,
    sizeof(EVP_MD *) + sizeof(BLAKE2S_CTX),
};