Skip to content

Commit

Permalink
Update OpenSSL includes and compatibility checks in crypto files
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam-Lin-MillersLab committed Nov 10, 2024
1 parent 968c924 commit da5a8e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions crypto-openssl-10.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
* as that of the covered work.
*/

#include <openssl/opensslconf.h>
#include <openssl/hmac.h>

#if !defined(OPENSSL_API_COMPAT)
#if defined(HMAC_cleanup)

#include "crypto.hpp"
#include "key.hpp"
Expand Down
4 changes: 2 additions & 2 deletions crypto-openssl-11.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
* as that of the covered work.
*/

#include <openssl/opensslconf.h>
#include <openssl/hmac.h>

#if defined(OPENSSL_API_COMPAT)
#if !defined(HMAC_cleanup)

#include "crypto.hpp"
#include "key.hpp"
Expand Down

0 comments on commit da5a8e4

Please sign in to comment.