1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-03 05:09:14 +00:00

remove bignum_set_negative and bignum_is_negative because those functions are not available in older openssl versions

This commit is contained in:
sven
2008-10-30 13:10:01 +00:00
parent c51f495a84
commit e9dd88b8a9
2 changed files with 0 additions and 30 deletions

View File

@@ -47,17 +47,6 @@ function bignum_clear_bit(bignum, position)
-- @return True if the selected bit is set, false otherwise.
function bignum_is_bit_set(bignum, position)
--- Sets the sign of <code>bignum</code>.
-- @param bignum bignum to operate on.
-- @param negative If true, the sign becomes negative, otherwise it becomes
-- positive.
function bignum_set_negative(bignum, negative)
--- Gets the sign of <code>bignum</code>.
-- @param bignum bignum to operate on.
-- @return True if <code>bignum</code> is negative, false otherwise.
function bignum_is_negative(bignum)
--- Converts a binary-encoded string into a bignum.
-- @param string Binary string.
-- @return bignum.