| /freebsd-14.2/crypto/openssl/include/openssl/ |
| H A D | txt_db.h | 36 typedef OPENSSL_STRING *OPENSSL_PSTRING; 37 DEFINE_SPECIAL_STACK_OF(OPENSSL_PSTRING, OPENSSL_STRING) 42 LHASH_OF(OPENSSL_STRING) **index; 43 int (**qual) (OPENSSL_STRING *); 47 OPENSSL_STRING *arg_row; 52 int TXT_DB_create_index(TXT_DB *db, int field, int (*qual) (OPENSSL_STRING *), 55 OPENSSL_STRING *TXT_DB_get_by_index(TXT_DB *db, int idx, 56 OPENSSL_STRING *value); 57 int TXT_DB_insert(TXT_DB *db, OPENSSL_STRING *value);
|
| H A D | safestack.h | 195 typedef char *OPENSSL_STRING; typedef 205 SKM_DEFINE_STACK_OF_INTERNAL(OPENSSL_STRING, char, char) 208 #define sk_OPENSSL_STRING_new(cmp) ((STACK_OF(OPENSSL_STRING) *)OPENSSL_sk_new(ossl_check_OPENSSL_S… 209 #define sk_OPENSSL_STRING_new_null() ((STACK_OF(OPENSSL_STRING) *)OPENSSL_sk_new_null()) 210 #define sk_OPENSSL_STRING_new_reserve(cmp, n) ((STACK_OF(OPENSSL_STRING) *)OPENSSL_sk_new_reserve(o… 228 #define sk_OPENSSL_STRING_dup(sk) ((STACK_OF(OPENSSL_STRING) *)OPENSSL_sk_dup(ossl_check_const_OPEN… 229 #define sk_OPENSSL_STRING_deep_copy(sk, copyfunc, freefunc) ((STACK_OF(OPENSSL_STRING) *)OPENSSL_sk…
|
| H A D | lhash.h | 252 DEFINE_LHASH_OF_INTERNAL(OPENSSL_STRING); 253 #define lh_OPENSSL_STRING_new(hfn, cmp) ((LHASH_OF(OPENSSL_STRING) *)OPENSSL_LH_new(ossl_check_OPEN… 256 #define lh_OPENSSL_STRING_insert(lh, ptr) ((OPENSSL_STRING *)OPENSSL_LH_insert(ossl_check_OPENSSL_S… 257 #define lh_OPENSSL_STRING_delete(lh, ptr) ((OPENSSL_STRING *)OPENSSL_LH_delete(ossl_check_OPENSSL_S… 258 #define lh_OPENSSL_STRING_retrieve(lh, ptr) ((OPENSSL_STRING *)OPENSSL_LH_retrieve(ossl_check_OPENS…
|
| H A D | x509v3.h.in | 743 STACK_OF(OPENSSL_STRING) *X509_get1_email(X509 *x); 744 STACK_OF(OPENSSL_STRING) *X509_REQ_get1_email(X509_REQ *x); 745 void X509_email_free(STACK_OF(OPENSSL_STRING) *sk); 746 STACK_OF(OPENSSL_STRING) *X509_get1_ocsp(X509 *x);
|
| /freebsd-14.2/crypto/openssl/crypto/txt_db/ |
| H A D | txt_db.c | 28 OPENSSL_STRING *pp; in TXT_DB_read() 128 OPENSSL_STRING *TXT_DB_get_by_index(TXT_DB *db, int idx, in TXT_DB_get_by_index() 129 OPENSSL_STRING *value) in TXT_DB_get_by_index() 131 OPENSSL_STRING *ret; in TXT_DB_get_by_index() 132 LHASH_OF(OPENSSL_STRING) *lh; in TXT_DB_get_by_index() 148 int TXT_DB_create_index(TXT_DB *db, int field, int (*qual) (OPENSSL_STRING *), in TXT_DB_create_index() argument 151 LHASH_OF(OPENSSL_STRING) *idx; in TXT_DB_create_index() 152 OPENSSL_STRING *r, *k; in TXT_DB_create_index() 160 if ((idx = (LHASH_OF(OPENSSL_STRING) *)OPENSSL_LH_new(hash, cmp)) == NULL) { in TXT_DB_create_index() 235 int TXT_DB_insert(TXT_DB *db, OPENSSL_STRING *row) in TXT_DB_insert() [all …]
|
| /freebsd-14.2/crypto/openssl/apps/include/ |
| H A D | apps.h | 240 index_name_cmp((const OPENSSL_CSTRING *)CHECKED_PTR_OF(OPENSSL_STRING, a), \ 241 (const OPENSSL_CSTRING *)CHECKED_PTR_OF(OPENSSL_STRING, b)) 256 STACK_OF(OPENSSL_STRING) *sigopts, X509V3_CTX *ext_ctx); 257 int do_X509_verify(X509 *x, EVP_PKEY *pkey, STACK_OF(OPENSSL_STRING) *vfyopts); 259 STACK_OF(OPENSSL_STRING) *sigopts); 261 STACK_OF(OPENSSL_STRING) *vfyopts); 263 STACK_OF(OPENSSL_STRING) *sigopts); 339 OSSL_PARAM *app_params_new_from_opts(STACK_OF(OPENSSL_STRING) *opts,
|
| H A D | s_apps.h | 71 int config_ctx(SSL_CONF_CTX *cctx, STACK_OF(OPENSSL_STRING) *str, SSL_CTX *ctx);
|
| /freebsd-14.2/crypto/openssl/crypto/x509/ |
| H A D | by_store.c | 97 static void free_uri(OPENSSL_STRING data) in free_uri() 104 STACK_OF(OPENSSL_STRING) *uris = X509_LOOKUP_get_method_data(ctx); in by_store_free() 121 STACK_OF(OPENSSL_STRING) *uris = X509_LOOKUP_get_method_data(ctx); in by_store_ctrl_ex() 151 STACK_OF(OPENSSL_STRING) *uris = X509_LOOKUP_get_method_data(ctx); in by_store()
|
| H A D | v3_utl.c | 29 static void str_free(OPENSSL_STRING str); 30 static int append_ia5(STACK_OF(OPENSSL_STRING) **sk, 451 STACK_OF(OPENSSL_STRING) *X509_get1_email(X509 *x) in STACK_OF() argument 454 STACK_OF(OPENSSL_STRING) *ret; in STACK_OF() 462 STACK_OF(OPENSSL_STRING) *X509_get1_ocsp(X509 *x) in STACK_OF() argument 465 STACK_OF(OPENSSL_STRING) *ret = NULL; in STACK_OF() 489 STACK_OF(OPENSSL_STRING) *ret; in STACK_OF() 502 STACK_OF(OPENSSL_STRING) *ret = NULL; in STACK_OF() 527 static void str_free(OPENSSL_STRING str) in str_free() 532 static int append_ia5(STACK_OF(OPENSSL_STRING) **sk, in append_ia5() [all …]
|
| H A D | x509_local.h | 32 STACK_OF(OPENSSL_STRING) *hosts; /* Set of acceptable names */
|
| /freebsd-14.2/crypto/openssl/apps/ |
| H A D | engine.c | 159 STACK_OF(OPENSSL_STRING) *cmds = NULL; in util_verbose() 239 static void util_do_cmds(ENGINE *e, STACK_OF(OPENSSL_STRING) *cmds, in util_do_cmds() 303 STACK_OF(OPENSSL_STRING) *pre_cmds = sk_OPENSSL_STRING_new_null(); in engine_main() 304 STACK_OF(OPENSSL_STRING) *post_cmds = sk_OPENSSL_STRING_new_null(); in engine_main()
|
| H A D | ca.c | 94 STACK_OF(OPENSSL_STRING) *sigopts, 95 STACK_OF(OPENSSL_STRING) *vfyopts, 106 STACK_OF(OPENSSL_STRING) *sigopts, 107 STACK_OF(OPENSSL_STRING) *vfyopts, 116 STACK_OF(OPENSSL_STRING) *sigopts, 1380 STACK_OF(OPENSSL_STRING) *sigopts, in certify() 1381 STACK_OF(OPENSSL_STRING) *vfyopts, in certify() 1512 OPENSSL_STRING row[DB_NUMBER]; in do_body() 1513 OPENSSL_STRING *irow = NULL; in do_body() 1514 OPENSSL_STRING *rrow = NULL; in do_body() [all …]
|
| H A D | cms.c | 28 *make_receipt_request(STACK_OF(OPENSSL_STRING) *rr_to, int rr_allorfirst, 29 STACK_OF(OPENSSL_STRING) *rr_from); 31 STACK_OF(OPENSSL_STRING) *param); 59 STACK_OF(OPENSSL_STRING) *param; 286 STACK_OF(OPENSSL_STRING) *rr_to = NULL, *rr_from = NULL; in cms_main() 287 STACK_OF(OPENSSL_STRING) *sksigners = NULL, *skkeys = NULL; in cms_main() 1396 static STACK_OF(GENERAL_NAMES) *make_names_stack(STACK_OF(OPENSSL_STRING) *ns) in STACK_OF() 1431 *make_receipt_request(STACK_OF(OPENSSL_STRING) *rr_to, int rr_allorfirst, in make_receipt_request() 1432 STACK_OF(OPENSSL_STRING) *rr_from) in make_receipt_request() 1459 STACK_OF(OPENSSL_STRING) *param) in cms_set_pkey_param()
|
| H A D | verify.c | 25 STACK_OF(OPENSSL_STRING) *opts); 84 STACK_OF(OPENSSL_STRING) *vfyopts = NULL; in verify_main() 248 STACK_OF(OPENSSL_STRING) *opts) in check()
|
| H A D | kdf.c | 51 static char *alloc_kdf_algorithm_name(STACK_OF(OPENSSL_STRING) **optp, in alloc_kdf_algorithm_name() 74 STACK_OF(OPENSSL_STRING) *opts = NULL; in kdf_main()
|
| H A D | mac.c | 55 static char *alloc_mac_algorithm_name(STACK_OF(OPENSSL_STRING) **optp, in alloc_mac_algorithm_name() 81 STACK_OF(OPENSSL_STRING) *opts = NULL; in mac_main()
|
| H A D | req.c | 176 static unsigned long ext_name_hash(const OPENSSL_STRING *a) in ext_name_hash() 181 static int ext_name_cmp(const OPENSSL_STRING *a, const OPENSSL_STRING *b) in ext_name_cmp() 186 static void exts_cleanup(OPENSSL_STRING *x) in exts_cleanup() 195 static int duplicated(LHASH_OF(OPENSSL_STRING) *addexts, char *kv) in duplicated() 222 p = (char *)lh_OPENSSL_STRING_insert(addexts, (OPENSSL_STRING *)kv); in duplicated() 241 STACK_OF(OPENSSL_STRING) *pkeyopts = NULL, *sigopts = NULL, *vfyopts = NULL; in req_main() 242 LHASH_OF(OPENSSL_STRING) *addexts = NULL; in req_main()
|
| H A D | ocsp.c | 66 STACK_OF(OPENSSL_STRING) *names, 72 STACK_OF(OPENSSL_STRING) *sigopts, 218 STACK_OF(OPENSSL_STRING) *rsign_sigopts = NULL; in ocsp_main() 227 STACK_OF(OPENSSL_STRING) *reqnames = NULL; in ocsp_main() 967 STACK_OF(OPENSSL_STRING) *names, in print_ocsp_summary() 1031 STACK_OF(OPENSSL_STRING) *sigopts, in make_ocsp_response()
|
| H A D | crl2pkcs7.c | 54 STACK_OF(OPENSSL_STRING) *certflst = NULL; in crl2pkcs7_main()
|
| H A D | pkeyutl.c | 125 STACK_OF(OPENSSL_STRING) *pkeyopts = NULL; in pkeyutl_main() 126 STACK_OF(OPENSSL_STRING) *pkeyopts_passin = NULL; in pkeyutl_main()
|
| H A D | genpkey.c | 75 STACK_OF(OPENSSL_STRING) *keyopt = NULL; in genpkey_main()
|
| H A D | asn1parse.c | 66 STACK_OF(OPENSSL_STRING) *osk = NULL; in asn1parse_main()
|
| /freebsd-14.2/crypto/openssl/apps/lib/ |
| H A D | app_rand.c | 17 static STACK_OF(OPENSSL_STRING) *randfiles; in STACK_OF() argument
|
| H A D | apps.c | 2163 static int do_pkey_ctx_init(EVP_PKEY_CTX *pkctx, STACK_OF(OPENSSL_STRING) *opts) in do_pkey_ctx_init() 2182 static int do_x509_init(X509 *x, STACK_OF(OPENSSL_STRING) *opts) in do_x509_init() 2201 static int do_x509_req_init(X509_REQ *x, STACK_OF(OPENSSL_STRING) *opts) in do_x509_req_init() 2221 const char *md, STACK_OF(OPENSSL_STRING) *sigopts) in do_sign_init() 2273 STACK_OF(OPENSSL_STRING) *sigopts, X509V3_CTX *ext_ctx) in do_X509_sign() 2310 STACK_OF(OPENSSL_STRING) *sigopts) in do_X509_REQ_sign() 2323 STACK_OF(OPENSSL_STRING) *sigopts) in do_X509_CRL_sign() 2338 int do_X509_verify(X509 *x, EVP_PKEY *pkey, STACK_OF(OPENSSL_STRING) *vfyopts) in do_X509_verify() 2354 STACK_OF(OPENSSL_STRING) *vfyopts) in do_X509_REQ_verify() 3299 OSSL_PARAM *app_params_new_from_opts(STACK_OF(OPENSSL_STRING) *opts, in app_params_new_from_opts()
|
| /freebsd-14.2/crypto/openssl/test/ |
| H A D | evp_libctx_test.c | 40 static STACK_OF(OPENSSL_STRING) *cipher_names = NULL; 485 STACK_OF(OPENSSL_STRING) *names = cipher_names_list; in collect_cipher_names()
|