Skip to content

Commit 8e363cf

Browse files
aglruyadorno
authored andcommittedJan 31, 2023
crypto: include hmac.h in crypto_util.h
`crypto_util.h` references `HMAC_CTX_free` but doesn't include the header file that contains it. PR-URL: #46279 Reviewed-By: Filip Skokan <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent e75faff commit 8e363cf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎src/crypto/crypto_util.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,13 @@
1212
#include "util.h"
1313
#include "v8.h"
1414

15+
#include <openssl/dsa.h>
16+
#include <openssl/ec.h>
1517
#include <openssl/err.h>
1618
#include <openssl/evp.h>
17-
#include <openssl/ec.h>
19+
#include <openssl/hmac.h>
1820
#include <openssl/kdf.h>
1921
#include <openssl/rsa.h>
20-
#include <openssl/dsa.h>
2122
#include <openssl/ssl.h>
2223
#ifndef OPENSSL_NO_ENGINE
2324
# include <openssl/engine.h>

0 commit comments

Comments
 (0)
Please sign in to comment.