diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/openssl.c | 6 |
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: static const luaL_Reg bn_methods[] = { + { "add", &bn__add }, + { "sub", &bn__sub }, + { "mul", &bn__mul }, + { "div", &bn__div }, + { "mod", &bn__mod }, + { "pow", &bn__pow }, { "tobin", &bn_tobin }, { NULL, NULL }, }; |