OpenBSD manual page server

Manual Page Search Parameters

D2I_X509_NAME(3) Library Functions Manual D2I_X509_NAME(3)

d2i_X509_NAME, i2d_X509_NAME, X509_NAME_dup, X509_NAME_hash, d2i_X509_NAME_ENTRY, i2d_X509_NAME_ENTRY, X509_NAME_ENTRY_dupdecode and encode X.501 Name objects

#include <openssl/x509.h>

X509_NAME *
d2i_X509_NAME(X509_NAME **val_out, unsigned char **der_in, long length);

int
i2d_X509_NAME(X509_NAME *val_in, unsigned char **der_out);

X509_NAME *
X509_NAME_dup(X509_NAME *val_in);

unsigned long
X509_NAME_hash(X509_NAME *val_in);

X509_NAME_ENTRY *
d2i_X509_NAME_ENTRY(X509_NAME_ENTRY **val_out, unsigned char **der_in, long length);

int
i2d_X509_NAME_ENTRY(X509_NAME_ENTRY *val_in, unsigned char **der_out);

X509_NAME_ENTRY *
X509_NAME_ENTRY_dup(X509_NAME_ENTRY *val_in);

These functions decode and encode X.501 Name objects using DER format. For details about the semantics, examples, caveats, and bugs, see ASN1_item_d2i(3).

() and () decode and encode an ASN.1 Name structure defined in RFC 5280 section 4.1.2.4.

() copies val_in by calling () and d2i_X509_NAME().

() calculates a SHA1(3) hash of the DER-encoded form of the name *val_in. It is for example used by X509_LOOKUP_hash_dir(3) to locate certificate files in the file system.

() and () decode and encode an ASN.1 RelativeDistinguishedName structure defined in RFC 5280 section 4.1.2.4.

() copies val_in by calling () and d2i_X509_NAME_ENTRY().

d2i_X509_NAME() and X509_NAME_dup() return the new X509_NAME object or NULL if an error occurs.

X509_NAME_hash() returns the hash value or 0 if an error occurs.

d2i_X509_NAME_ENTRY() and X509_NAME_ENTRY_dup() return the new X509_NAME_ENTRY object or NULL if an error occurs.

i2d_X509_NAME() and i2d_X509_NAME_ENTRY() return the number of bytes successfully encoded or a negative value if an error occurs.

ASN1_item_d2i(3), X509_NAME_ENTRY_new(3), X509_NAME_new(3), X509_NAME_print_ex(3)

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

ITU-T Recommendation X.690, also known as ISO/IEC 8825-1: Information technology - ASN.1 encoding rules: Specification of Basic Encoding Rules (BER), Canonical Encoding Rules (CER) and Distinguished Encoding Rules (DER).

January 7, 2017 OpenBSD-6.1