Lines Matching refs:X509_EXTENSION

222 typedef struct X509_extension_st X509_EXTENSION;  typedef
223 SKM_DEFINE_STACK_OF_INTERNAL(X509_EXTENSION, X509_EXTENSION, X509_EXTENSION)
225 #define sk_X509_EXTENSION_value(sk, idx) ((X509_EXTENSION *)OPENSSL_sk_value(ossl_check_const_X509_…
226 #define sk_X509_EXTENSION_new(cmp) ((STACK_OF(X509_EXTENSION) *)OPENSSL_sk_new(ossl_check_X509_EXTE…
227 #define sk_X509_EXTENSION_new_null() ((STACK_OF(X509_EXTENSION) *)OPENSSL_sk_new_null())
228 #define sk_X509_EXTENSION_new_reserve(cmp, n) ((STACK_OF(X509_EXTENSION) *)OPENSSL_sk_new_reserve(o…
232 #define sk_X509_EXTENSION_delete(sk, i) ((X509_EXTENSION *)OPENSSL_sk_delete(ossl_check_X509_EXTENS…
233 #define sk_X509_EXTENSION_delete_ptr(sk, ptr) ((X509_EXTENSION *)OPENSSL_sk_delete_ptr(ossl_check_X…
236 #define sk_X509_EXTENSION_pop(sk) ((X509_EXTENSION *)OPENSSL_sk_pop(ossl_check_X509_EXTENSION_sk_ty…
237 #define sk_X509_EXTENSION_shift(sk) ((X509_EXTENSION *)OPENSSL_sk_shift(ossl_check_X509_EXTENSION_s…
240 #define sk_X509_EXTENSION_set(sk, idx, ptr) ((X509_EXTENSION *)OPENSSL_sk_set(ossl_check_X509_EXTEN…
246 #define sk_X509_EXTENSION_dup(sk) ((STACK_OF(X509_EXTENSION) *)OPENSSL_sk_dup(ossl_check_const_X509…
247 #define sk_X509_EXTENSION_deep_copy(sk, copyfunc, freefunc) ((STACK_OF(X509_EXTENSION) *)OPENSSL_sk…
250 typedef STACK_OF(X509_EXTENSION) X509_EXTENSIONS;
660 DECLARE_ASN1_DUP_FUNCTION(X509_EXTENSION)
736 DECLARE_ASN1_FUNCTIONS(X509_EXTENSION)
864 const STACK_OF(X509_EXTENSION) *X509_get0_extensions(const X509 *x);
892 STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req);
894 const STACK_OF(X509_EXTENSION) *exts, int nid);
895 int X509_REQ_add_extensions(X509_REQ *req, const STACK_OF(X509_EXTENSION) *ext);
936 const STACK_OF(X509_EXTENSION) *X509_CRL_get0_extensions(const X509_CRL *crl);
947 const STACK_OF(X509_EXTENSION) *
1069 int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x);
1070 int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x,
1072 int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *x,
1074 int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *x,
1076 X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc);
1077 X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc);
1078 STACK_OF(X509_EXTENSION) *X509v3_add_ext(STACK_OF(X509_EXTENSION) **x,
1079 X509_EXTENSION *ex, int loc);
1085 X509_EXTENSION *X509_get_ext(const X509 *x, int loc);
1086 X509_EXTENSION *X509_delete_ext(X509 *x, int loc);
1087 int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
1097 X509_EXTENSION *X509_CRL_get_ext(const X509_CRL *x, int loc);
1098 X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc);
1099 int X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc);
1110 X509_EXTENSION *X509_REVOKED_get_ext(const X509_REVOKED *x, int loc);
1111 X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc);
1112 int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc);
1118 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex,
1121 X509_EXTENSION *X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex,
1124 int X509_EXTENSION_set_object(X509_EXTENSION *ex, const ASN1_OBJECT *obj);
1125 int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit);
1126 int X509_EXTENSION_set_data(X509_EXTENSION *ex, ASN1_OCTET_STRING *data);
1127 ASN1_OBJECT *X509_EXTENSION_get_object(X509_EXTENSION *ex);
1128 ASN1_OCTET_STRING *X509_EXTENSION_get_data(X509_EXTENSION *ne);
1129 int X509_EXTENSION_get_critical(const X509_EXTENSION *ex);