Lines Matching refs:ext
72 static X509_EXTENSION *v3_generic_extension(const char *ext, char *value, int crit, int type, X509V3_CTX *ctx);
119 X509_EXTENSION *ext;
168 ext = do_ext_i2d(method, ext_nid, crit, ext_struc);
171 return ext;
181 X509_EXTENSION *ext;
201 ext = X509_EXTENSION_create_by_NID(NULL, ext_nid, crit, ext_oct);
202 if (!ext) goto merr;
205 return ext;
260 static X509_EXTENSION *v3_generic_extension(const char *ext, char *value,
269 if (!(obj = OBJ_txt2obj(ext, 0)))
272 ERR_add_error_data(2, "name=", ext);
328 X509_EXTENSION *ext;
336 if (!(ext = X509V3_EXT_nconf(conf, ctx, val->name, val->value)))
338 if (sk) X509v3_add_ext(sk, ext, -1);
339 X509_EXTENSION_free(ext);