|
BIO_s_null(3) -- Null data sink
|
BIO_s_null() returns the null sink BIO method. Data written to the null sink is discarded; reads return EOF. |
BIO_s_socket(3) -- Socket BIO
|
The BIO_s_socket() function returns the socket BIO method. This is a wrapper around the platform's socket routines. BIO_read() and BIO_write() read or write the underlying socket. BIO_puts() is suppo... |
|
BIO_tell(3) -- BIO control operations
|
The BIO_ctrl(), BIO_callback_ctrl(), BIO_ptr_ctrl(), and BIO_int_ctrl() functions are BIO control operations taking arguments of various types. These functions are not usually called directly; various... |
BIO_vfree(3) -- BIO allocation and freeing functions
|
The BIO_new() function returns a new BIO using method type. The BIO_set() function sets the method of an already existing BIO. The BIO_free() function frees up a single BIO. The BIO_vfree()function al... |
BIO_wpending(3) -- BIO control operations
|
The BIO_ctrl(), BIO_callback_ctrl(), BIO_ptr_ctrl(), and BIO_int_ctrl() functions are BIO control operations taking arguments of various types. These functions are not usually called directly; various... |
BIO_write(3) -- BIO I/O functions
|
The BIO_read() function attempts to read len bytes from BIO b and places the data in buf. The BIO_gets() function performs the BIOs gets operation and places the data in buf. Usually this operation wi... |
BIO_write_filename(3) -- FILE bio
|
The BIO_s_file() function returns the BIO file method. As its name implies it is a wrapper round the stdio FILE structure and it is a source/sink BIO. Calls to BIO_read() and BIO_write() read and writ... |
bkgd(3) -- Routines for manipulating the background in a Curses window
|
The bkgdset and wbkgdset routines manipulate the background of the named window. Background is defined as chtype and consists of any combination of attributes and a character. The attribute part of th... |
bkgdset(3) -- Routines for manipulating the background in a Curses window
|
The bkgdset and wbkgdset routines manipulate the background of the named window. Background is defined as chtype and consists of any combination of attributes and a character. The attribute part of th... |
bkgrnd(3) -- Set or get background character and rendition by using a complex character
|
By using the information in wch, the bkgrndset and wbkgrndset functions set the background rendition and manipulate the window rendition of the current or specified window. These functions turn off th... |
bkgrndset(3) -- Set or get background character and rendition by using a complex character
|
By using the information in wch, the bkgrndset and wbkgrndset functions set the background rendition and manipulate the window rendition of the current or specified window. These functions turn off th... |
blowfish(3) -- Blowfish encryption
|
This library implements the Blowfish cipher, which was invented and described by Counterpane. See http://www.counterpane.com/blowfish.html. Blowfish is a block cipher that operates on 64-bit (8 byte) ... |
bn(3) -- Multiprecision integer arithmetics
|
This library performs arithmetic operations on integers of arbitrary size. It was written for use in public key cryptography, such as RSA and Diffie-Hellman. It uses dynamic memory allocation for stor... |
BN_add(3) -- Arithmetic operations on BIGNUMs
|
The BN_add() function adds a and b and places the result in r (r=a+b). The r value can be the same BIGNUM as a or b. The BN_sub() function subtracts b from a and places the result in r (r=a-b). The BN... |
BN_add_word(3) -- Arithmetic functions on BIGNUMs with integers
|
These functions perform arithmetic operations on BIGNUMs with unsigned integers. They are much more efficient than the normal BIGNUM arithmetic operations. The BN_add_word() function adds w to a (a+=w... |