Fix build: Correct SHA_POST() macro in pbkdf2.c

The hmac_sha256() function got renamed to hmac_sha256_internal() in
9624a1a10e, but one obscure occasion
where it was used was missed and therefore it was still used with its
old name.

Signed-off-by: Florian Schmaus <flo@geekplace.eu>
This commit is contained in:
Florian Schmaus 2017-08-24 09:18:53 +02:00 committed by Christian Decker
parent 0a88948849
commit d3f36ba8ae

View file

@ -10,7 +10,7 @@
#define SHA_T sha256
#define SHA_ALIGN_T uint32_t
#define SHA_MEM u32
#define SHA_POST(name) name ## sha256
#define SHA_POST(name) name ## sha256_internal
#define PBKDF2_HMAC_SHA_LEN PBKDF2_HMAC_SHA256_LEN
#include "pbkdf2.inl"