1BIO_s_null(3) OpenSSL BIO_s_null(3)
2
3
4
6 BIO_s_null - null data sink
7
9 #include <openssl/bio.h>
10
11 BIO_METHOD * BIO_s_null(void);
12
14 BIO_s_null() returns the null sink BIO method. Data written to the null
15 sink is discarded, reads return EOF.
16
18 A null sink BIO behaves in a similar manner to the Unix /dev/null
19 device.
20
21 A null bio can be placed on the end of a chain to discard any data
22 passed through it.
23
24 A null sink is useful if, for example, an application wishes to digest
25 some data by writing through a digest bio but not send the digested
26 data anywhere. Since a BIO chain must normally include a source/sink
27 BIO this can be achieved by adding a null sink BIO to the end of the
28 chain
29
31 BIO_s_null() returns the null sink BIO method.
32
34 TBA
35
36
37
381.0.1e 2013-02-11 BIO_s_null(3)