From f5dd63990cba1a6a15bad256c56683a975fb8c44 Mon Sep 17 00:00:00 2001 From: Chris Josten Date: Tue, 4 Oct 2022 14:49:47 +0200 Subject: [PATCH] Revert back to EVP_PKEY_id --- source/hunt/jwt/JwtOpenSSL.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/hunt/jwt/JwtOpenSSL.d b/source/hunt/jwt/JwtOpenSSL.d index 5c1519b..f7a8f53 100644 --- a/source/hunt/jwt/JwtOpenSSL.d +++ b/source/hunt/jwt/JwtOpenSSL.d @@ -116,7 +116,7 @@ private ubyte[] signShaPem(const(EVP_MD) *alg, int type, string key, string msg) } scope(exit) EVP_PKEY_free(pkey); - int pkey_type = EVP_PKEY_get_id(pkey); + int pkey_type = EVP_PKEY_id(pkey); if (pkey_type != type){ warning("Invalid argument"); return null; @@ -338,7 +338,7 @@ private bool verifyShaPem(const(EVP_MD) *alg, int type, string head, const(ubyte } scope(exit) EVP_PKEY_free(pkey); - int pkey_type = EVP_PKEY_get_id(pkey); + int pkey_type = EVP_PKEY_id(pkey); if (pkey_type != type) { version(HUNT_JWT_DEBUG) warning("Invalid argument"); return false;