ASN1_INTEGER_new.3ossl - Man Page

ASN1_INTEGER allocation functions

Synopsis

 #include <openssl/asn1.h>

 ASN1_INTEGER *ASN1_INTEGER_new(void);
 void ASN1_INTEGER_free(ASN1_INTEGER *a);

Description

ASN1_INTEGER_new() returns an allocated ASN1_INTEGER structure.

ASN1_INTEGER_free() frees up a single ASN1_INTEGER object.

ASN1_INTEGER structure representing the ASN.1 INTEGER type

Return Values

ASN1_INTEGER_new() return a valid ASN1_INTEGER structure or NULL if an error occurred.

ASN1_INTEGER_free() does not return a value.

See Also

ERR_get_error(3)

Referenced By

The man page ASN1_INTEGER_free.3ossl(3) is an alias of ASN1_INTEGER_new.3ossl(3).

2024-04-04 3.2.1 OpenSSL