OpenBSD manual page server

Manual Page Search Parameters

GENERAL_NAME_NEW(3) Library Functions Manual GENERAL_NAME_NEW(3)

GENERAL_NAME_new, GENERAL_NAME_free, GENERAL_NAMES_new, GENERAL_NAMES_free, EDIPARTYNAME_new, EDIPARTYNAME_free, OTHERNAME_new, OTHERNAME_freenames for use in X.509 extensions

#include <openssl/x509v3.h>

GENERAL_NAME *
GENERAL_NAME_new(void);

void
GENERAL_NAME_free(GENERAL_NAME *name);

GENERAL_NAMES *
GENERAL_NAMES_new(void);

void
GENERAL_NAMES_free(GENERAL_NAMES *names);

EDIPARTYNAME *
EDIPARTYNAME_new(void);

void
EDIPARTYNAME_free(EDIPARTYNAME *name);

OTHERNAME *
OTHERNAME_new(void);

void
OTHERNAME_free(OTHERNAME *name);

Even though the X.501 Name documented in X509_NAME_new(3) is a complicated multi-layered structure, it is very rigid and not flexible enough to represent various entities that many people want to use as names in certificates. For that reason, X.509 extensions use the X.509 GeneralName wrapper structure rather than using the X.501 Name structure directly, at the expense of adding one or two additional layers of indirection.

() allocates and initializes an empty GENERAL_NAME object, representing the ASN.1 GeneralName structure defined in RFC 5280 section 4.2.1.6. It can for example hold an X509_name object, an IP address, a DNS host name, a uniform resource identifier, an email address, or an EDIPARTYNAME or OTHERNAME object described below. () frees name.

() allocates and initializes an empty GENERAL_NAMES object, which is a STACK_OF(GENERAL_NAME) and represents the ASN.1 GeneralNames structure defined in RFC 5280 section 4.2.1.6. It is used by extension structures that can contain multiple names, for example key identifier, alternative name, and distribution point extensions. () frees names.

() allocates and initializes an empty EDIPARTYNAME object, representing the ASN.1 EDIPartyName structure defined in RFC 5280 section 4.2.1.6, where “EDI” stands for “electronic data identifier”. It can hold two strings, the name itself and the name of the authority that assigned that name. () frees name.

() allocates and initializes an empty OTHERNAME object, representing the ASN.1 OtherName structure defined in RFC 5280 section 4.2.1.6. It can hold data of any ASN1_TYPE together with a type identifier. () frees name.

GENERAL_NAME_new(), GENERAL_NAMES_new(), EDIPARTYNAME_new(), and OTHERNAME_new() return a new GENERAL_NAME, GENERAL_NAMES, EDIPARTYNAME, or OTHERNAME object or NULL if an error occurs.

X509_EXTENSION_new(3), X509_NAME_new(3)

RFC 5280: Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile, section 4.2: Certificate Extensions

December 25, 2016 OpenBSD-6.1