Go to main content

man pages section 3: Extended Library Functions, Volume 1

Exit Print View

Updated: Wednesday, July 27, 2022
 
 

ASN1_STRING_new (3openssl)

Name

ASN1_STRING_new - ASN1_STRING allocation functions

Synopsis

#include <openssl/asn1.h>

ASN1_STRING * ASN1_STRING_new(void);
ASN1_STRING * ASN1_STRING_type_new(int type);
void ASN1_STRING_free(ASN1_STRING *a);

Description

ASN1_STRING_new(3openssl)           OpenSSL          ASN1_STRING_new(3openssl)



NAME
       ASN1_STRING_new, ASN1_STRING_type_new, ASN1_STRING_free - ASN1_STRING
       allocation functions

SYNOPSIS
        #include <openssl/asn1.h>

        ASN1_STRING * ASN1_STRING_new(void);
        ASN1_STRING * ASN1_STRING_type_new(int type);
        void ASN1_STRING_free(ASN1_STRING *a);

DESCRIPTION
       ASN1_STRING_new() returns an allocated ASN1_STRING structure. Its type
       is undefined.

       ASN1_STRING_type_new() returns an allocated ASN1_STRING structure of
       type type.

       ASN1_STRING_free() frees up a.


ATTRIBUTES
       See attributes(7) for descriptions of the following attributes:


       +---------------+--------------------------+
       |ATTRIBUTE TYPE |     ATTRIBUTE VALUE      |
       +---------------+--------------------------+
       |Availability   | library/security/openssl |
       +---------------+--------------------------+
       |Stability      | Pass-through uncommitted |
       +---------------+--------------------------+

NOTES
       Other string types call the ASN1_STRING functions. For example
       ASN1_OCTET_STRING_new() calls ASN1_STRING_type(V_ASN1_OCTET_STRING).

       Source code for open source software components in Oracle Solaris can
       be found at https://www.oracle.com/downloads/opensource/solaris-source-
       code-downloads.html.

       This software was built from source available at
       https://github.com/oracle/solaris-userland.  The original community
       source was downloaded from
       https://www.openssl.org/source/openssl-1.0.2ze.tar.gz.

       Further information about this software can be found on the open source
       community website at https://www.openssl.org/.

RETURN VALUES
       ASN1_STRING_new() and ASN1_STRING_type_new() return a valid ASN1_STRING
       structure or NULL if an error occurred.

       ASN1_STRING_free() does not return a value.

SEE ALSO
       ERR_get_error(3)

HISTORY
       TBA




1.0.2ze                           2022-05-03         ASN1_STRING_new(3openssl)