Lines Matching refs:X509_EXTENSION
20 int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x);
21 X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc);
23 int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x,
25 int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *x,
27 int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *x,
29 X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc);
30 STACK_OF(X509_EXTENSION) *X509v3_add_ext(STACK_OF(X509_EXTENSION) **x,
31 X509_EXTENSION *ex, int loc);
32 STACK_OF(X509_EXTENSION)
33 *X509v3_add_extensions(STACK_OF(X509_EXTENSION) **target,
34 const STACK_OF(X509_EXTENSION) *exts);
37 X509_EXTENSION *X509_get_ext(const X509 *x, int loc);
41 X509_EXTENSION *X509_delete_ext(X509 *x, int loc);
42 int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
45 X509_EXTENSION *X509_CRL_get_ext(const X509_CRL *x, int loc);
50 X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc);
51 int X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc);
54 X509_EXTENSION *X509_REVOKED_get_ext(const X509_REVOKED *x, int loc);
59 X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc);
60 int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc);
128 They return an B<X509_EXTENSION> object which must be explicitly freed
136 B<X509_EXTENSION> structure or NULL if an error occurs.