summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/openssl.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/openssl.c b/src/openssl.c
index afd1f61..304ff9a 100644
--- a/src/openssl.c
+++ b/src/openssl.c
@@ -1941,6 +1941,12 @@ sslerr:
1941 1941
1942 1942
1943static const luaL_Reg bn_methods[] = { 1943static const luaL_Reg bn_methods[] = {
1944 { "add", &bn__add },
1945 { "sub", &bn__sub },
1946 { "mul", &bn__mul },
1947 { "div", &bn__div },
1948 { "mod", &bn__mod },
1949 { "pow", &bn__pow },
1944 { "tobin", &bn_tobin }, 1950 { "tobin", &bn_tobin },
1945 { NULL, NULL }, 1951 { NULL, NULL },
1946}; 1952};