1BIO_S_NULL(3ossl) OpenSSL BIO_S_NULL(3ossl)
2
3
4
6 BIO_s_null - null data sink
7
9 #include <openssl/bio.h>
10
11 const 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 Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
35
36 Licensed under the Apache License 2.0 (the "License"). You may not use
37 this file except in compliance with the License. You can obtain a copy
38 in the file LICENSE in the source distribution or at
39 <https://www.openssl.org/source/license.html>.
40
41
42
433.1.1 2023-08-31 BIO_S_NULL(3ossl)