Skip to content

Commit

Permalink
crypto: include hmac.h in crypto_util.h
Browse files Browse the repository at this point in the history
`crypto_util.h` references `HMAC_CTX_free` but doesn't include the
header file that contains it.
  • Loading branch information
agl committed Jan 20, 2023
1 parent 49413ad commit c0e8488
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/crypto/crypto_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@
#include "util.h"
#include "v8.h"

#include <openssl/dsa.h>
#include <openssl/ec.h>
#include <openssl/err.h>
#include <openssl/evp.h>
#include <openssl/ec.h>
#include <openssl/hmac.h>
#include <openssl/kdf.h>
#include <openssl/rsa.h>
#include <openssl/dsa.h>
#include <openssl/ssl.h>
#ifndef OPENSSL_NO_ENGINE
# include <openssl/engine.h>
Expand Down

0 comments on commit c0e8488

Please sign in to comment.