aboutsummaryrefslogtreecommitdiffstats
path: root/openssl.c
diff options
context:
space:
mode:
authorLibravatarLibravatar William Ahern <william@server.local> 2012-10-11 20:53:20 -0700
committerLibravatarLibravatar William Ahern <william@server.local> 2012-10-11 20:53:20 -0700
commit49cdb86019dca5fb28d05b490e9721dea67731e4 (patch)
tree67ff102ac0556a399031f46016462fc297e45adf /openssl.c
parent4559433301a2234dc08c5b8b1e6d90542eaba913 (diff)
downloadluaossl-49cdb86019dca5fb28d05b490e9721dea67731e4.tar.gz
luaossl-49cdb86019dca5fb28d05b490e9721dea67731e4.tar.bz2
luaossl-49cdb86019dca5fb28d05b490e9721dea67731e4.zip
-n
document new openssl bindings
Diffstat (limited to 'openssl.c')
-rw-r--r--openssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl.c b/openssl.c
index 4ab0688..2dd5844 100644
--- a/openssl.c
+++ b/openssl.c
@@ -1642,7 +1642,7 @@ error:
static int xc_digest(lua_State *L) {
X509 *crt = checksimple(L, 1, X509_CERT_CLASS);
const char *type = luaL_optstring(L, 2, "sha1");
- int format = luaL_checkoption(L, 3, "*s", (const char *[]){ "*s", "*x", "*n", NULL });
+ int format = luaL_checkoption(L, 3, "x", (const char *[]){ "s", "x", "n", NULL });
const EVP_MD *ctx;
unsigned char md[EVP_MAX_MD_SIZE];
unsigned len;