mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-21 14:24:09 +01:00
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:
parent
0a88948849
commit
d3f36ba8ae
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue