1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-01 04:19:02 +00:00

o Added the function bignum_add to the nse_openssl library to support BIGNUM

addition [Patrik]
This commit is contained in:
patrik
2010-03-09 20:54:01 +00:00
parent 2a44a941af
commit 16e0a8449f
3 changed files with 23 additions and 0 deletions

View File

@@ -95,6 +95,12 @@ function bignum_pseudo_rand(bits)
-- @return bignum.
function bignum_mod_exp(a, p, m)
--- Returns the bignum which is the result of <code>a+b</code>
-- @param a bignum
-- @param b bignum
-- @return bignum
function bignum_add(a, b)
--- Returns a string containing random data.
-- @param bytes Length of the returned string in bytes.
-- @return Random string.