diff options
author | william <william@25tandclement.com> | 2014-07-15 21:16:01 -0700 |
---|---|---|
committer | william <william@25tandclement.com> | 2014-07-15 21:16:01 -0700 |
commit | 2a655b72b6013994432313c8799037fa598eb5c5 (patch) | |
tree | 4c672299f30b166dd58fed0f9583dee307bf6f4b | |
parent | 33015a94acba6a072bcbb17e25b5ae4c954923b7 (diff) | |
download | luaossl-2a655b72b6013994432313c8799037fa598eb5c5.tar.gz luaossl-2a655b72b6013994432313c8799037fa598eb5c5.tar.bz2 luaossl-2a655b72b6013994432313c8799037fa598eb5c5.zip |
fixed interpose implementations for pkey and cipher classes, which passed the wrong metatable names to the generic interpose
-rw-r--r-- | src/openssl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/openssl.c b/src/openssl.c index b183524..ee1fd89 100644 --- a/src/openssl.c +++ b/src/openssl.c @@ -1043,7 +1043,7 @@ done: static int pk_interpose(lua_State *L) { - return interpose(L, X509_NAME_CLASS); + return interpose(L, PKEY_CLASS); } /* pk_interpose() */ @@ -4319,7 +4319,7 @@ static int cipher_new(lua_State *L) { static int cipher_interpose(lua_State *L) { - return interpose(L, HMAC_CLASS); + return interpose(L, CIPHER_CLASS); } /* cipher_interpose() */ |