Sortix nightly manual
This manual documents Sortix nightly, a development build that has not been officially released. You can instead view this document in the latest official manual.
NAME
X509_EXTENSION_new, X509_EXTENSION_dup, X509_EXTENSION_free, X509_EXTENSION_create_by_NID, X509_EXTENSION_create_by_OBJ, X509_EXTENSION_set_object, X509_EXTENSION_set_critical, X509_EXTENSION_set_data, X509_EXTENSION_get_object, X509_EXTENSION_get_critical, X509_EXTENSION_get_data — create, change, and inspect X.509 Extension objectsSYNOPSIS
#include <openssl/x509.h>X509_EXTENSION_new(void);
X509_EXTENSION_dup(X509_EXTENSION *ex);
X509_EXTENSION_free(X509_EXTENSION *ex);
X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, int nid, int crit, ASN1_OCTET_STRING *data);
X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex, const ASN1_OBJECT *obj, int crit, ASN1_OCTET_STRING *data);
X509_EXTENSION_set_object(X509_EXTENSION *ex, const ASN1_OBJECT *obj);
X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit);
X509_EXTENSION_set_data(X509_EXTENSION *ex, ASN1_OCTET_STRING *data);
X509_EXTENSION_get_object(X509_EXTENSION *ex);
X509_EXTENSION_get_critical(const X509_EXTENSION *ex);
X509_EXTENSION_get_data(X509_EXTENSION *ex);