logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

ASN1_INTEGER_new, ASN1_INTEGER_free - ASN1_INTEGER allocation functions

Description

ASN1_INTEGER_new() returns an allocated ASN1_INTEGER structure.

       ASN1_INTEGER_free() frees up a single ASN1_INTEGER object.  If the argument is NULL, nothing is done.

       ASN1_INTEGER structure representing the ASN.1 INTEGER type

Name

       ASN1_INTEGER_new, ASN1_INTEGER_free - ASN1_INTEGER allocation functions

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)

Synopsis

        #include <openssl/asn1.h>

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

See Also