|
NAMEASN1_NULL_new , ASN1_NULL_free
—
ASN.1 NULL value
SYNOPSIS#include <openssl/asn1.h>
ASN1_NULL *
void
DESCRIPTIONASN1_NULL_new () returns a specific invalid pointer that
represents the ASN.1 NULL value, which is the only possible value of the ASN.1
NULL type. That pointer is different from a NULL
pointer. Dereferencing it almost certainly results in a segmentation fault.
This function does not allocate memory and cannot fail.
The ASN.1 NULL type is also represented by the
SEE ALSOASN1_item_new(3), d2i_ASN1_NULL(3)STANDARDSITU-T Recommendation X.208, also known as ISO/IEC 8824-1: Specification of Abstract Syntax Notation One (ASN.1), section 19: Notation for the null typeHISTORYASN1_NULL_new () and
ASN1_NULL_free () first appeared in OpenSSL 0.9.5 and
have been available since OpenBSD 2.7.
Visit the GSP FreeBSD Man Page Interface. |