1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-04 13:49:03 +00:00

Add BN_div function binding

This commit is contained in:
dmiller
2017-10-18 20:26:39 +00:00
parent c72e3ac0d9
commit 3abb4c7af3
2 changed files with 22 additions and 0 deletions

View File

@@ -115,6 +115,13 @@ function bignum_pseudo_rand(bits)
-- @return bignum.
function bignum_mod_exp(a, p, m)
--- Returns the bignums which are the result and remainder of <code>a/b</code>
-- @param a bignum
-- @param b bignum
-- @return bignum quotient
-- @return bignum remainder (modulo)
function bignum_div(a, b)
--- Returns the bignum which is the result of <code>a+b</code>
-- @param a bignum
-- @param b bignum