Sortix cross-volatile manual
This manual documents Sortix cross-volatile. You can instead view this document in the latest official manual.
NAME
X509V3_parse_list, X509V3_conf_free — create and destroy CONF_VALUE objectsSYNOPSIS
library “libcrypto”#include <openssl/x509v3.h>
X509V3_parse_list(const char *string);
X509V3_conf_free(CONF_VALUE *conf);
DESCRIPTION
X509V3_parse_list() parses the string and allocates an array of CONF_VALUE objects according to the following rules.- The string is split into fields at comma (‘,’) characters.
- If a field contains a colon (‘:’) character, the part before the colon is regarded as a name and the part after the first colon as the associated value. Otherwise, the whole field is regarded as the name and NULL is used as the associated value.
- For each name and each value, leading and trailing whitespace as defined by isspace(3) is ignored.
- Parsing ends when a NUL, carriage return, or newline character is encountered.