Sortix main manual
This manual documents Sortix main. You can instead view this document in the latest official manual.
NAME
BIO_new_NDEF — generic constructor for streaming BIO chainsSYNOPSIS
#include <openssl/asn1.h>BIO_new_NDEF(BIO *out_bio, ASN1_VALUE *val_in, const ASN1_ITEM *it);
DESCRIPTION
BIO_new_NDEF() is a wrapper around BIO_new(3) with a BIO type of BIO_f_asn1(3) that supports streaming by providing the following additional functionality.- the data type it
- the input value val_in
- a pointer to the unsigned char * content buffer of val_in, extracted using a type-specific callback function
- a pointer to the new asn1 BIO
- a pointer to the beginning of the BIO chain; this may be the asn1 BIO itself, or one or more filter BIOs may be prepended to it in a type-specific manner, for example digest or encoding BIOs