Skip to content

Commit

Permalink
fix incorrect function signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
cps-b committed Nov 14, 2023
1 parent f012d98 commit 5723922
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/openssl_lib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -964,12 +964,12 @@ void OpenSSLLib::EVP_MAC_CTX_free(EVP_MAC_CTX *ctx) noexcept
EVP_MAC_CTX_free(ctx);
}

EVP_MAC OpenSSLLib::EVP_MAC_fetch(int *libctx, const char *algorithm, const char *properties) noexcept
EVP_MAC OpenSSLLib::EVP_MAC_fetch(OSSL_LIB_CTX *libctx, const char *algorithm, const char *properties) noexcept
{
return EVP_MAC_fetch(libctx, algorithm, properties);
}

void OpenSSLLib::EVP_MAC_free(int *mac) noexcept
void OpenSSLLib::EVP_MAC_free(EVP_MAC *mac) noexcept
{
EVP_MAC_free(mac);
}
Expand Down

0 comments on commit 5723922

Please sign in to comment.