summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/openssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openssl.c b/src/openssl.c
index 646e2ae..3c4a237 100644
--- a/src/openssl.c
+++ b/src/openssl.c
@@ -3722,7 +3722,7 @@ static int xc_setPublicKey(lua_State *L) {
3722 3722
3723 3723
3724static int xc_getPublicKeyDigest(lua_State *L) { 3724static int xc_getPublicKeyDigest(lua_State *L) {
3725 ASN1_BIT_STRING *pk = ((X509 *)checksimple(L, 1, X509_CERT_CLASS))->cert_info->key->public_key; 3725 ASN1_BIT_STRING *pk = X509_get0_pubkey_bitstr(checksimple(L, 1, X509_CERT_CLASS));
3726 const char *id = luaL_optstring(L, 2, "sha1"); 3726 const char *id = luaL_optstring(L, 2, "sha1");
3727 const EVP_MD *md; 3727 const EVP_MD *md;
3728 unsigned char digest[EVP_MAX_MD_SIZE]; 3728 unsigned char digest[EVP_MAX_MD_SIZE];