summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/openssl.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/openssl.c b/src/openssl.c
index 8e95622..646e2ae 100644
--- a/src/openssl.c
+++ b/src/openssl.c
@@ -3722,18 +3722,22 @@ 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 *)checksimple(L, 1, X509_CERT_CLASS))->cert_info->key->public_key;
3726 3726 const char *id = luaL_optstring(L, 2, "sha1");
3727 const EVP_MD *md;
3727 unsigned char digest[EVP_MAX_MD_SIZE]; 3728 unsigned char digest[EVP_MAX_MD_SIZE];
3728 unsigned int len; 3729 unsigned int len;
3729 3730
3730 if (!EVP_Digest(pk->data, pk->length, digest, &len, EVP_sha1(), NULL)) 3731 if (!(md = EVP_get_digestbyname(id)))
3732 return luaL_error(L, "x509.cert:getPublicKeyDigest: %s: invalid digest type", id);
3733
3734 if (!EVP_Digest(pk->data, pk->length, digest, &len, md, NULL))
3731 return auxL_error(L, auxL_EOPENSSL, "x509.cert:getPublicKeyDigest"); 3735 return auxL_error(L, auxL_EOPENSSL, "x509.cert:getPublicKeyDigest");
3732 3736
3733 lua_pushlstring(L, (char *) digest, len); 3737 lua_pushlstring(L, (char *)digest, len);
3734 3738
3735 return 1; 3739 return 1;
3736} /* xc_setPublicKeyDigest() */ 3740} /* xc_getPublicKeyDigest() */
3737 3741
3738 3742
3739static const EVP_MD *xc_signature(lua_State *L, int index, EVP_PKEY *key) { 3743static const EVP_MD *xc_signature(lua_State *L, int index, EVP_PKEY *key) {