/openssl/crypto/evp/ |
H A D | names.c | 199 void (*fn) (const EVP_CIPHER *ciph, member 207 dc->fn(NULL, nm->name, nm->data, dc->arg); in do_all_cipher_fn() 212 void EVP_CIPHER_do_all(void (*fn) (const EVP_CIPHER *ciph, in EVP_CIPHER_do_all() 221 dc.fn = fn; in EVP_CIPHER_do_all() 235 dc.fn = fn; in EVP_CIPHER_do_all_sorted() 242 void (*fn) (const EVP_MD *ciph, member 250 dc->fn(NULL, nm->name, nm->data, dc->arg); in do_all_md_fn() 255 void EVP_MD_do_all(void (*fn) (const EVP_MD *md, in EVP_MD_do_all() 264 dc.fn = fn; in EVP_MD_do_all() 269 void EVP_MD_do_all_sorted(void (*fn) (const EVP_MD *md, in EVP_MD_do_all_sorted() [all …]
|
H 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)); \
|
H 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); \ 41 return fn##_final(kctx, md, kctx->md_size); \ 43 #define IMPLEMENT_LEGACY_EVP_MD_METH_SHAKE(nm, fn, tag) \ argument 46 return fn##_init(EVP_MD_CTX_get0_md_data(ctx), tag, ctx->digest->md_size * 8); \
|
/openssl/test/recipes/ |
H 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)", 236 $fn->("genpkey EC key on ${curvename} with ec_param_enc:'${paramenc}' (${outform})", 265 my $fn = $params_encodings{$paramenc}; 269 $fn->("genpkey EC params ${curvename} with ec_param_enc:'${paramenc}' (text)", 278 $fn->("genpkey EC params ${curvename} with ec_param_enc:'${paramenc}' (${outform})", 289 $fn->("genpkey EC key on ${curvename} with ec_param_enc:'${paramenc}' (text)", 298 $fn->("genpkey EC key on ${curvename} with ec_param_enc:'${paramenc}' (${outform})",
|
/openssl/Configurations/ |
H A D | unix-Makefile.tmpl | 751 fn=`basename $$i`; \ 758 fn=`basename $$l`; \ 807 fn=`basename $$e`; \ 814 fn=`basename $$e`; \ 828 fn=`basename $$i`; \ 835 fn=`basename $$l`; \ 882 fn=`basename $$e`; \ 894 fn=`basename $$e`; \ 906 fn=`basename $$e`; \ 918 fn=`basename $$e`; \ [all …]
|
/openssl/test/ |
H A D | v3nametest.c | 231 int (*fn) (X509 *, const char *); member 263 static int check_message(const struct set_name_fn *fn, const char *op, in check_message() argument 271 fn->name, op, nameincert, in check_message() 280 const struct set_name_fn *fn) in run_cert() argument 299 } else if (fn->host) { in run_cert() 306 if (!TEST_true(check_message(fn, "host", nameincert, match, *pname))) in run_cert() 314 } else if (fn->host) { in run_cert() 321 if (!TEST_true(check_message(fn, "host-no-wildcards", in run_cert() 327 if (fn->email) { in run_cert() 334 if (!TEST_true(check_message(fn, "email", nameincert, match, *pname))) in run_cert() [all …]
|
/openssl/crypto/err/ |
H A D | err_local.h | 51 const char *fn) in err_set_debug() argument 67 if (fn == NULL || fn[0] == '\0') in err_set_debug() 69 else if ((es->err_func[i] = CRYPTO_malloc(strlen(fn) + 1, in err_set_debug() 71 strcpy(es->err_func[i], fn); in err_set_debug()
|
/openssl/crypto/ |
H A D | core_algorithm.c | 22 void (*fn)(OSSL_PROVIDER *, const OSSL_ALGORITHM *, int no_store, member 77 data->fn(provider, thismap, no_store, data->data); in algorithm_do_map() 142 void (*fn)(OSSL_PROVIDER *provider, in ossl_algorithm_do_all() 156 cbdata.fn = fn; in ossl_algorithm_do_all()
|
H A D | rcu_internal.h | 17 rcu_cb_fn fn; member
|
/openssl/crypto/engine/ |
H 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()
|
H 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()
|
H 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()
|
H 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/crypto/objects/ |
H A D | o_names.c | 279 void (*fn) (const OBJ_NAME *, void *arg); member 286 d->fn(name, d->arg); in do_all_fn() 291 void OBJ_NAME_do_all(int type, void (*fn) (const OBJ_NAME *, void *arg), in OBJ_NAME_do_all() 297 d.fn = fn; in OBJ_NAME_do_all() 328 void (*fn) (const OBJ_NAME *, void *arg), in OBJ_NAME_do_all_sorted() 345 fn(d.names[n], arg); in OBJ_NAME_do_all_sorted()
|
/openssl/dev/release-aux/ |
H A D | README.md | 4 - release-state-fn.sh 9 release-version-fn.sh to supply necessary functions that are 12 - release-version-fn.sh
|
/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H 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/doc/man3/ |
H 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>.
|
H 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); 55 implementations, calls the given function I<fn> with the implementation method 64 EVP_KEM_names_do_all() traverses all names for I<kem>, and calls I<fn> with
|
H 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
|
H 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>.
|
/openssl/include/internal/ |
H A D | quic_ackm.h | 30 void (*fn)(OSSL_TIME deadline, 35 void (*fn)(OSSL_TIME deadline,
|
/openssl/include/openssl/ |
H A D | encoder.h | 41 void (*fn)(OSSL_ENCODER *encoder, void *arg), 44 void (*fn)(const char *name, void *data),
|
H A D | decoder.h | 41 void (*fn)(OSSL_DECODER *encoder, void *arg), 44 void (*fn)(const char *name, void *data),
|
H A D | evp.h | 545 void (*fn)(const char *name, void *data), 593 void (*fn)(const char *name, void *data), 1191 void EVP_CIPHER_do_all(void (*fn) (const EVP_CIPHER *ciph, 1194 void EVP_CIPHER_do_all_sorted(void (*fn) 1201 void EVP_MD_do_all(void (*fn) (const EVP_MD *ciph, 1204 void EVP_MD_do_all_sorted(void (*fn) 1208 void (*fn)(EVP_MD *md, void *arg), 1250 void (*fn)(EVP_MAC *mac, void *arg), 1253 void (*fn)(const char *name, void *data), 1280 void (*fn)(EVP_RAND *rand, void *arg), [all …]
|
H A D | kdf.h | 56 void (*fn)(EVP_KDF *kdf, void *arg), 59 void (*fn)(const char *name, void *data),
|