/openssl-master/crypto/evp/ |
A D | names.c | 173 void (*fn) (const EVP_CIPHER *ciph, member 181 dc->fn(NULL, nm->name, nm->data, dc->arg); in do_all_cipher_fn() 186 void EVP_CIPHER_do_all(void (*fn) (const EVP_CIPHER *ciph, in EVP_CIPHER_do_all() 195 dc.fn = fn; in EVP_CIPHER_do_all() 209 dc.fn = fn; in EVP_CIPHER_do_all_sorted() 216 void (*fn) (const EVP_MD *ciph, member 224 dc->fn(NULL, nm->name, nm->data, dc->arg); in do_all_md_fn() 229 void EVP_MD_do_all(void (*fn) (const EVP_MD *md, in EVP_MD_do_all() 238 dc.fn = fn; in EVP_MD_do_all() 243 void EVP_MD_do_all_sorted(void (*fn) (const EVP_MD *md, in EVP_MD_do_all_sorted() [all …]
|
A D | legacy_meth.h | 10 #define IMPLEMENT_LEGACY_EVP_MD_METH(nm, fn) \ argument 13 return fn##_Init(EVP_MD_CTX_get0_md_data(ctx)); \ 17 return fn##_Update(EVP_MD_CTX_get0_md_data(ctx), data, count); \ 21 return fn##_Final(md, EVP_MD_CTX_get0_md_data(ctx)); \ 24 #define IMPLEMENT_LEGACY_EVP_MD_METH_LC(nm, fn) \ argument 27 return fn##_init(EVP_MD_CTX_get0_md_data(ctx)); \ 31 return fn##_update(EVP_MD_CTX_get0_md_data(ctx), data, count); \ 35 return fn##_final(md, EVP_MD_CTX_get0_md_data(ctx)); \
|
A D | legacy_sha.c | 29 #define IMPLEMENT_LEGACY_EVP_MD_METH_SHA3(nm, fn, tag) \ argument 32 return fn##_init(EVP_MD_CTX_get0_md_data(ctx), tag, ctx->digest->md_size * 8); \ 36 return fn##_update(EVP_MD_CTX_get0_md_data(ctx), data, count); \ 40 return fn##_final(md, EVP_MD_CTX_get0_md_data(ctx)); \ 42 #define IMPLEMENT_LEGACY_EVP_MD_METH_SHAKE(nm, fn, tag) \ argument 45 return fn##_init(EVP_MD_CTX_get0_md_data(ctx), tag, ctx->digest->md_size * 8); \
|
/openssl-master/test/recipes/ |
A D | 15-test_genec.t | 202 my $fn = $params_encodings{$paramenc}; 206 $fn->("genpkey EC params ${curvename} with ec_param_enc:'${paramenc}' (text)", 215 $fn->("genpkey EC params ${curvename} with ec_param_enc:'${paramenc}' (${outform})", 226 $fn->("genpkey EC key on ${curvename} with ec_param_enc:'${paramenc}' (text)", 235 $fn->("genpkey EC key on ${curvename} with ec_param_enc:'${paramenc}' (${outform})", 263 my $fn = $params_encodings{$paramenc}; 267 $fn->("genpkey EC params ${curvename} with ec_param_enc:'${paramenc}' (text)", 276 $fn->("genpkey EC params ${curvename} with ec_param_enc:'${paramenc}' (${outform})", 287 $fn->("genpkey EC key on ${curvename} with ec_param_enc:'${paramenc}' (text)", 296 $fn->("genpkey EC key on ${curvename} with ec_param_enc:'${paramenc}' (${outform})",
|
/openssl-master/Configurations/ |
A D | unix-Makefile.tmpl | 703 fn=`basename $$i`; \ 710 fn=`basename $$l`; \ 776 fn=`basename $$i`; \ 783 fn=`basename $$l`; \ 824 fn=`basename $$e`; \ 836 fn=`basename $$e`; \ 848 fn=`basename $$e`; \ 860 fn=`basename $$e`; \ 878 fn=`basename $$s`; \ 900 fn=`basename $$x`; \ [all …]
|
/openssl-master/test/ |
A D | v3nametest.c | 235 int (*fn) (X509 *, const char *); member 267 static int check_message(const struct set_name_fn *fn, const char *op, in check_message() argument 275 fn->name, op, nameincert, in check_message() 284 const struct set_name_fn *fn) in run_cert() argument 301 } else if (fn->host) { in run_cert() 308 if (!TEST_true(check_message(fn, "host", nameincert, match, *pname))) in run_cert() 316 } else if (fn->host) { in run_cert() 323 if (!TEST_true(check_message(fn, "host-no-wildcards", in run_cert() 329 if (fn->email) { in run_cert() 336 if (!TEST_true(check_message(fn, "email", nameincert, match, *pname))) in run_cert() [all …]
|
/openssl-master/crypto/ |
A D | core_algorithm.c | 20 void (*fn)(OSSL_PROVIDER *, const OSSL_ALGORITHM *, int no_store, member 65 data->fn(provider, thismap, no_store, data->data); in algorithm_do_this() 92 void (*fn)(OSSL_PROVIDER *provider, in ossl_algorithm_do_all() 104 cbdata.fn = fn; in ossl_algorithm_do_all()
|
/openssl-master/crypto/err/ |
A D | err_local.h | 50 const char *fn) in err_set_debug() argument 63 if (fn == NULL || fn[0] == '\0') in err_set_debug() 66 es->err_func[i] = OPENSSL_strdup(fn); in err_set_debug()
|
/openssl-master/crypto/engine/ |
A D | tb_cipher.c | 76 ENGINE_CIPHERS_PTR fn = ENGINE_get_ciphers(e); in ENGINE_get_cipher() local 77 if (!fn || !fn(e, &ret, NULL, nid)) { in ENGINE_get_cipher()
|
A D | tb_digest.c | 76 ENGINE_DIGESTS_PTR fn = ENGINE_get_digests(e); in ENGINE_get_digest() local 77 if (!fn || !fn(e, &ret, NULL, nid)) { in ENGINE_get_digest()
|
A D | tb_pkmeth.c | 77 ENGINE_PKEY_METHS_PTR fn = ENGINE_get_pkey_meths(e); in ENGINE_get_pkey_meth() local 78 if (!fn || !fn(e, &ret, NULL, nid)) { in ENGINE_get_pkey_meth()
|
A D | tb_asnmth.c | 90 ENGINE_PKEY_ASN1_METHS_PTR fn = ENGINE_get_pkey_asn1_meths(e); in ENGINE_get_pkey_asn1_meth() local 91 if (!fn || !fn(e, &ret, NULL, nid)) { in ENGINE_get_pkey_asn1_meth()
|
/openssl-master/crypto/objects/ |
A D | o_names.c | 291 void (*fn) (const OBJ_NAME *, void *arg); member 298 d->fn(name, d->arg); in do_all_fn() 303 void OBJ_NAME_do_all(int type, void (*fn) (const OBJ_NAME *, void *arg), in OBJ_NAME_do_all() 309 d.fn = fn; in OBJ_NAME_do_all() 340 void (*fn) (const OBJ_NAME *, void *arg), in OBJ_NAME_do_all_sorted() 357 fn(d.names[n], arg); in OBJ_NAME_do_all_sorted()
|
/openssl-master/external/perl/Text-Template-1.56/lib/Text/ |
A D | Template.pm | 478 my $fn = shift; 479 my $templ = Text::Template->new(TYPE => 'FILE', SOURCE => $fn, @_) or return undef; 502 my $fn = shift; 504 open my $fh, '<', $fn or do { 505 $ERROR = "Couldn't open file $fn: $!";
|
/openssl-master/doc/man3/ |
A D | EVP_KEYEXCH_free.pod | 23 void (*fn)(EVP_KEYEXCH *exchange, void *arg), 26 void (*fn)(const char *name, void *data), 62 calls I<fn> with each name and I<data>. 70 of the implementations, calls I<fn> with the implementation method and
|
A D | EVP_ASYM_CIPHER_free.pod | 24 void (*fn)(EVP_ASYM_CIPHER *cipher, 28 void (*fn)(const char *name, void *data), 61 the implementations, calls the given function I<fn> with the implementation 71 I<fn> with each name and I<data>.
|
A D | EVP_KEM_free.pod | 23 void (*fn)(EVP_KEM *kem, void *arg), void *arg); 25 void (*fn)(const char *name, void *data), void *data); 54 implementations, calls the given function I<fn> with the implementation method 63 EVP_KEM_names_do_all() traverses all names for I<kem>, and calls I<fn> with
|
A D | EVP_SIGNATURE.pod | 27 void (*fn)(EVP_SIGNATURE *signature, 31 void (*fn)(const char *name, void *data), 65 implementations, calls the given function I<fn> with the implementation method 75 I<fn> with each name and I<data>.
|
A D | OSSL_ENCODER.pod | 36 void (*fn)(OSSL_ENCODER *encoder, void *arg), 39 void (*fn)(const char *name, void *data), 81 I<encoder>, and calls I<fn> with each name and I<data> as arguments. 85 I<libctx>, and for each of the implementations, calls I<fn> with the
|
A D | EVP_KEYMGMT.pod | 36 void (*fn)(EVP_KEYMGMT *keymgmt, void *arg), 39 void (*fn)(const char *name, void *data), 79 calls I<fn> with each name and I<data>. 87 of the implementations, calls I<fn> with the implementation method and
|
/openssl-master/crypto/property/ |
A D | property.c | 372 void (*fn)(int id, void *method, void *fnarg), in alg_do_one() 375 fn(alg->nid, impl->method.method, fnarg); in alg_do_one() 379 void (*fn)(int id, void *method, void *fnarg); member 391 alg_do_one(alg, impl, data->fn, data->fnarg); in alg_do_each() 396 void (*fn)(int id, void *method, void *fnarg), in ossl_method_store_do_all() 401 data.fn = fn; in ossl_method_store_do_all()
|
/openssl-master/include/openssl/ |
A D | encoder.h | 41 void (*fn)(OSSL_ENCODER *encoder, void *arg), 44 void (*fn)(const char *name, void *data),
|
A D | decoder.h | 41 void (*fn)(OSSL_DECODER *encoder, void *arg), 44 void (*fn)(const char *name, void *data),
|
A D | kdf.h | 56 void (*fn)(EVP_KDF *kdf, void *arg), 59 void (*fn)(const char *name, void *data),
|
A D | evp.h | 539 void (*fn)(const char *name, void *data), 584 void (*fn)(const char *name, void *data), 1174 void EVP_CIPHER_do_all(void (*fn) (const EVP_CIPHER *ciph, 1177 void EVP_CIPHER_do_all_sorted(void (*fn) 1184 void EVP_MD_do_all(void (*fn) (const EVP_MD *ciph, 1187 void EVP_MD_do_all_sorted(void (*fn) 1191 void (*fn)(EVP_MD *md, void *arg), 1233 void (*fn)(EVP_MAC *mac, void *arg), 1236 void (*fn)(const char *name, void *data), 1262 void (*fn)(EVP_RAND *rand, void *arg), [all …]
|