Lines Matching defs:X509_EXTENSION

200 } X509_EXTENSION;
202 typedef STACK_OF(X509_EXTENSION) X509_EXTENSIONS;
204 DECLARE_STACK_OF(X509_EXTENSION)
205 DECLARE_ASN1_SET_OF(X509_EXTENSION)
252 STACK_OF(X509_EXTENSION) *extensions; /* [ 3 ] optional in v3 */
429 STACK_OF(X509_EXTENSION) /* optional */ *extensions;
447 STACK_OF(X509_EXTENSION) /* [0] */ *extensions;
746 X509_EXTENSION *X509_EXTENSION_dup(X509_EXTENSION *ex);
808 DECLARE_ASN1_FUNCTIONS(X509_EXTENSION)
912 STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req);
913 int X509_REQ_add_extensions_nid(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts,
915 int X509_REQ_add_extensions(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts);
1034 int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x);
1035 int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x,
1037 int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *x,
1039 int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *x,
1041 X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc);
1042 X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc);
1043 STACK_OF(X509_EXTENSION) *X509v3_add_ext(STACK_OF(X509_EXTENSION) **x,
1044 X509_EXTENSION *ex, int loc);
1050 X509_EXTENSION *X509_get_ext(X509 *x, int loc);
1051 X509_EXTENSION *X509_delete_ext(X509 *x, int loc);
1052 int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
1061 X509_EXTENSION *X509_CRL_get_ext(X509_CRL *x, int loc);
1062 X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc);
1063 int X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc);
1073 X509_EXTENSION *X509_REVOKED_get_ext(X509_REVOKED *x, int loc);
1074 X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc);
1075 int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc);
1080 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex,
1083 X509_EXTENSION *X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex,
1086 int X509_EXTENSION_set_object(X509_EXTENSION *ex, ASN1_OBJECT *obj);
1087 int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit);
1088 int X509_EXTENSION_set_data(X509_EXTENSION *ex, ASN1_OCTET_STRING *data);
1089 ASN1_OBJECT *X509_EXTENSION_get_object(X509_EXTENSION *ex);
1090 ASN1_OCTET_STRING *X509_EXTENSION_get_data(X509_EXTENSION *ne);
1091 int X509_EXTENSION_get_critical(X509_EXTENSION *ex);