Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 8e363cf

Browse filesBrowse files
aglruyadorno
authored andcommitted
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 <panva.ip@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent e75faff commit 8e363cf
Copy full SHA for 8e363cf

File tree

Expand file treeCollapse file tree

1 file changed

+3
-2
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+3
-2
lines changed
Open diff view settings
Collapse file

‎src/crypto/crypto_util.h‎

Copy file name to clipboardExpand all lines: src/crypto/crypto_util.h
+3-2Lines changed: 3 additions & 2 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.