|
BN_num_bytes(3) -- get BIGNUM size
|
These functions return the size of a BIGNUM in bytes or bits, and the size of an unsigned integer in bits. BN_num_bytes() is a macro. |
BN_rand(3) -- generate pseudo-random number
|
BN_rand() generates a cryptographically strong pseudo-random number of bits bits in length and stores it in rnd. If top is -1, the most significant bit of the random number can be zero. If top is 0, i... |
BN_set_bit(3) -- bit operations on BIGNUMs
|
BN_set_bit() sets bit n in a to 1 (`a|=(1< |
BN_zero(3) -- BIGNUM assignment operations
|
BN_zero(), BN_one() and BN_set_word() set a to the values 0, 1 and w respectively. BN_zero() and BN_one() are macros. BN_value_one() returns a BIGNUM constant of value 1. This constant is useful for u... |
bsearch(3) -- binary search of a sorted table
|
The bsearch() function searches an array of nmemb objects, the initial member of which is pointed to by base, for a member that matches the object pointed to by key. The size of each member of the arr... |
bstring(3) -- byte string operations
|
These functions operate on variable length strings of bytes. They do not check for terminating null bytes as the routines listed in string(3) do. See the specific manual pages for more information. |
bswap(3) -- byte-order swapping functions
|
The bswap16(), bswap32(), and bswap64() functions return the value of their argument with the bytes inverted. They can be used to convert 16, 32 or 64 bits integers from little to big endian, or vice-... |
bswap16(3) -- byte-order swapping functions
|
The bswap16(), bswap32(), and bswap64() functions return the value of their argument with the bytes inverted. They can be used to convert 16, 32 or 64 bits integers from little to big endian, or vice-... |
bswap32(3) -- byte-order swapping functions
|
The bswap16(), bswap32(), and bswap64() functions return the value of their argument with the bytes inverted. They can be used to convert 16, 32 or 64 bits integers from little to big endian, or vice-... |
bswap64(3) -- byte-order swapping functions
|
The bswap16(), bswap32(), and bswap64() functions return the value of their argument with the bytes inverted. They can be used to convert 16, 32 or 64 bits integers from little to big endian, or vice-... |
btree(3) -- btree database access method
|
The routine dbopen is the library interface to database files. One of the supported file formats is btree files. The general description of the database access methods is in dbopen(3), this manual pag... |
byteorder(3) -- convert values between host and network byte order
|
These routines convert 16 and 32 bit quantities between network byte order and host byte order. The types in_addr_t and in_port_t are defined by X/Open as: typedef u_int32_t in_addr_t; typedef u_int16... |
bzero(3) -- write zeroes to a byte string
|
The bzero() function writes len zero bytes to the string b. If len is zero, bzero() does nothing. |