summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/openssl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/openssl.c b/src/openssl.c
index 107ec23..2275d49 100644
--- a/src/openssl.c
+++ b/src/openssl.c
@@ -2281,6 +2281,10 @@ static const auxL_Reg bn_methods[] = {
2281 { "toBinary", &bn_toBinary }, 2281 { "toBinary", &bn_toBinary },
2282 { "toDecimal", &bn_toDecimal }, 2282 { "toDecimal", &bn_toDecimal },
2283 { "toHex", &bn_toHex }, 2283 { "toHex", &bn_toHex },
2284 /* deprecated */
2285 { "tobin", &bn_toBinary },
2286 { "todec", &bn_toDecimal },
2287 { "tohex", &bn_toHex },
2284 { NULL, NULL }, 2288 { NULL, NULL },
2285}; 2289};
2286 2290