Home
last modified time | relevance | path

Searched refs:alg (Results 51 - 75 of 1227) sorted by relevance

12345678910>>...50

/third_party/ltp/testcases/network/tcp_cc/
H A Dtcp_cc_lib.sh19 local alg=$1
20 tst_res TINFO "setting $alg"
22 tst_set_sysctl net.ipv4.tcp_congestion_control $alg safe
42 local alg="$1"
44 modprobe tcp_$alg > /dev/null 2>&1
45 grep -q $alg $proc_cc || tst_brk TCONF "Local host doesn't support $alg"
48 tst_rhost_run -c "modprobe tcp_$alg" > /dev/null 2>&1
49 tst_rhost_run -c "grep -q $alg $proc_cc" || \
50 tst_brk TCONF "Remote host doesn't support $alg"
[all...]
/third_party/node/deps/openssl/openssl/providers/implementations/include/prov/
H A Dciphercommon_aead.h14 #define IMPLEMENT_aead_cipher(alg, lc, UCMODE, flags, kbits, blkbits, ivbits) \
15 static OSSL_FUNC_cipher_get_params_fn alg##_##kbits##_##lc##_get_params; \
16 static int alg##_##kbits##_##lc##_get_params(OSSL_PARAM params[]) \
21 static OSSL_FUNC_cipher_newctx_fn alg##kbits##lc##_newctx; \
22 static void * alg##kbits##lc##_newctx(void *provctx) \
24 return alg##_##lc##_newctx(provctx, kbits); \
26 static void * alg##kbits##lc##_dupctx(void *src) \
28 return alg##_##lc##_dupctx(src); \
30 const OSSL_DISPATCH ossl_##alg##kbits##lc##_functions[] = { \
31 { OSSL_FUNC_CIPHER_NEWCTX, (void (*)(void))alg##kbit
[all...]
/third_party/mbedtls/scripts/mbedtls_dev/
H A Dcrypto_data_tests.py39 [alg
40 for alg in all_algorithms
41 if (not alg.is_wildcard and
42 alg.can_do(crypto_knowledge.AlgorithmCategory.HASH))]
44 # CALCULATE[alg] = function to return the hash of its argument in hex
68 def one_test_case(alg: crypto_knowledge.Algorithm,
76 alg.short_expression()))
77 tc.set_dependencies(psa_low_level_dependencies(alg.expression))
79 tc.set_arguments([alg.expression] +
84 alg
[all...]
/third_party/mbedtls/library/
H A Dpsa_crypto_aead.c31 psa_algorithm_t alg) in psa_aead_setup()
39 status = mbedtls_cipher_values_from_psa(alg, attributes->type, in psa_aead_setup()
45 switch (PSA_ALG_AEAD_WITH_SHORTENED_TAG(alg, 0)) { in psa_aead_setup()
48 operation->alg = PSA_ALG_CCM; in psa_aead_setup()
68 operation->alg = PSA_ALG_GCM; in psa_aead_setup()
88 operation->alg = PSA_ALG_CHACHA20_POLY1305; in psa_aead_setup()
90 if (alg != PSA_ALG_CHACHA20_POLY1305) { in psa_aead_setup()
112 operation->tag_length = PSA_ALG_AEAD_GET_TAG_LENGTH(alg); in psa_aead_setup()
120 psa_algorithm_t alg, in mbedtls_psa_aead_encrypt()
131 key_buffer_size, alg); in mbedtls_psa_aead_encrypt()
26 psa_aead_setup( mbedtls_psa_aead_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg) psa_aead_setup() argument
117 mbedtls_psa_aead_encrypt( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *nonce, size_t nonce_length, const uint8_t *additional_data, size_t additional_data_length, const uint8_t *plaintext, size_t plaintext_length, uint8_t *ciphertext, size_t ciphertext_size, size_t *ciphertext_length) mbedtls_psa_aead_encrypt() argument
229 mbedtls_psa_aead_decrypt( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *nonce, size_t nonce_length, const uint8_t *additional_data, size_t additional_data_length, const uint8_t *ciphertext, size_t ciphertext_length, uint8_t *plaintext, size_t plaintext_size, size_t *plaintext_length) mbedtls_psa_aead_decrypt() argument
321 mbedtls_psa_aead_encrypt_setup( mbedtls_psa_aead_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg) mbedtls_psa_aead_encrypt_setup() argument
342 mbedtls_psa_aead_decrypt_setup( mbedtls_psa_aead_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg) mbedtls_psa_aead_decrypt_setup() argument
[all...]
/kernel/linux/linux-5.10/crypto/
H A Dccm.c495 if (snprintf(inst->alg.base.cra_name, CRYPTO_MAX_ALG_NAME, in crypto_ccm_create_common()
499 if (snprintf(inst->alg.base.cra_driver_name, CRYPTO_MAX_ALG_NAME, in crypto_ccm_create_common()
504 inst->alg.base.cra_priority = (mac->base.cra_priority + in crypto_ccm_create_common()
506 inst->alg.base.cra_blocksize = 1; in crypto_ccm_create_common()
507 inst->alg.base.cra_alignmask = mac->base.cra_alignmask | in crypto_ccm_create_common()
509 inst->alg.ivsize = 16; in crypto_ccm_create_common()
510 inst->alg.chunksize = crypto_skcipher_alg_chunksize(ctr); in crypto_ccm_create_common()
511 inst->alg.maxauthsize = 16; in crypto_ccm_create_common()
512 inst->alg.base.cra_ctxsize = sizeof(struct crypto_ccm_ctx); in crypto_ccm_create_common()
513 inst->alg in crypto_ccm_create_common()
711 struct aead_alg *alg; crypto_rfc4309_create() local
866 struct crypto_alg *alg; cbcmac_create() local
[all...]
H A Dctr.c129 struct crypto_alg *alg; in crypto_ctr_create() local
136 alg = skcipher_ialg_simple(inst); in crypto_ctr_create()
140 if (alg->cra_blocksize < 4) in crypto_ctr_create()
144 if (alg->cra_blocksize % 4) in crypto_ctr_create()
148 inst->alg.base.cra_blocksize = 1; in crypto_ctr_create()
154 inst->alg.chunksize = alg->cra_blocksize; in crypto_ctr_create()
156 inst->alg.encrypt = crypto_ctr_crypt; in crypto_ctr_create()
157 inst->alg.decrypt = crypto_ctr_crypt; in crypto_ctr_create()
260 struct skcipher_alg *alg; in crypto_rfc3686_create() local
[all...]
H A Drng.c33 struct crypto_alg *alg = tfm->base.__crt_alg; in crypto_rng_reset() local
48 crypto_stats_get(alg); in crypto_rng_reset()
50 crypto_stats_rng_seed(alg, err); in crypto_rng_reset()
62 static unsigned int seedsize(struct crypto_alg *alg) in seedsize() argument
64 struct rng_alg *ralg = container_of(alg, struct rng_alg, base); in seedsize()
70 static int crypto_rng_report(struct sk_buff *skb, struct crypto_alg *alg) in crypto_rng_report() argument
78 rrng.seedsize = seedsize(alg); in crypto_rng_report()
83 static int crypto_rng_report(struct sk_buff *skb, struct crypto_alg *alg) in crypto_rng_report() argument
89 static void crypto_rng_show(struct seq_file *m, struct crypto_alg *alg)
91 static void crypto_rng_show(struct seq_file *m, struct crypto_alg *alg) in crypto_rng_show() argument
177 crypto_register_rng(struct rng_alg *alg) crypto_register_rng() argument
192 crypto_unregister_rng(struct rng_alg *alg) crypto_unregister_rng() argument
[all...]
H A Dalgboss.c36 } alg; member
53 char alg[CRYPTO_MAX_ALG_NAME]; member
75 crypto_alg_put(&param->larval->alg); in cryptomgr_probe()
84 const char *name = larval->alg.cra_name; in cryptomgr_schedule_probe()
135 param->attrs[i].alg.attr.rta_len = in cryptomgr_schedule_probe()
136 sizeof(param->attrs[i].alg); in cryptomgr_schedule_probe()
137 param->attrs[i].alg.attr.rta_type = CRYPTOA_ALG; in cryptomgr_schedule_probe()
138 memcpy(param->attrs[i].alg.data.name, name, len); in cryptomgr_schedule_probe()
167 param->type.data.type = larval->alg.cra_flags & ~CRYPTO_ALG_TESTED; in cryptomgr_schedule_probe()
171 param->otype = larval->alg in cryptomgr_schedule_probe()
215 cryptomgr_schedule_test(struct crypto_alg *alg) cryptomgr_schedule_test() argument
[all...]
H A Dhmac.c169 struct crypto_alg *alg; in hmac_create() local
190 alg = &salg->base; in hmac_create()
199 if (ds > alg->cra_blocksize || in hmac_create()
200 ss < alg->cra_blocksize) in hmac_create()
203 err = crypto_inst_setname(shash_crypto_instance(inst), tmpl->name, alg); in hmac_create()
207 inst->alg.base.cra_priority = alg->cra_priority; in hmac_create()
208 inst->alg.base.cra_blocksize = alg->cra_blocksize; in hmac_create()
209 inst->alg in hmac_create()
[all...]
H A Dlrw.c303 struct skcipher_alg *alg; in lrw_create() local
339 alg = crypto_skcipher_spawn_alg(spawn); in lrw_create()
342 if (alg->base.cra_blocksize != LRW_BLOCK_SIZE) in lrw_create()
345 if (crypto_skcipher_alg_ivsize(alg)) in lrw_create()
349 &alg->base); in lrw_create()
354 cipher_name = alg->base.cra_name; in lrw_create()
371 if (snprintf(inst->alg.base.cra_name, CRYPTO_MAX_ALG_NAME, in lrw_create()
379 inst->alg.base.cra_priority = alg->base.cra_priority; in lrw_create()
380 inst->alg in lrw_create()
[all...]
H A Dcmac.c226 struct crypto_alg *alg; in cmac_create() local
244 alg = crypto_spawn_cipher_alg(spawn); in cmac_create()
246 switch (alg->cra_blocksize) { in cmac_create()
255 err = crypto_inst_setname(shash_crypto_instance(inst), tmpl->name, alg); in cmac_create()
259 alignmask = alg->cra_alignmask; in cmac_create()
260 inst->alg.base.cra_alignmask = alignmask; in cmac_create()
261 inst->alg.base.cra_priority = alg->cra_priority; in cmac_create()
262 inst->alg.base.cra_blocksize = alg in cmac_create()
[all...]
H A Dxcbc.c192 struct crypto_alg *alg; in xcbc_create() local
210 alg = crypto_spawn_cipher_alg(spawn); in xcbc_create()
213 if (alg->cra_blocksize != XCBC_BLOCKSIZE) in xcbc_create()
216 err = crypto_inst_setname(shash_crypto_instance(inst), tmpl->name, alg); in xcbc_create()
220 alignmask = alg->cra_alignmask | 3; in xcbc_create()
221 inst->alg.base.cra_alignmask = alignmask; in xcbc_create()
222 inst->alg.base.cra_priority = alg->cra_priority; in xcbc_create()
223 inst->alg.base.cra_blocksize = alg in xcbc_create()
[all...]
/kernel/linux/linux-6.6/crypto/
H A Dccm.c495 if (snprintf(inst->alg.base.cra_name, CRYPTO_MAX_ALG_NAME, in crypto_ccm_create_common()
499 if (snprintf(inst->alg.base.cra_driver_name, CRYPTO_MAX_ALG_NAME, in crypto_ccm_create_common()
504 inst->alg.base.cra_priority = (mac->base.cra_priority + in crypto_ccm_create_common()
506 inst->alg.base.cra_blocksize = 1; in crypto_ccm_create_common()
507 inst->alg.base.cra_alignmask = mac->base.cra_alignmask | in crypto_ccm_create_common()
509 inst->alg.ivsize = 16; in crypto_ccm_create_common()
510 inst->alg.chunksize = crypto_skcipher_alg_chunksize(ctr); in crypto_ccm_create_common()
511 inst->alg.maxauthsize = 16; in crypto_ccm_create_common()
512 inst->alg.base.cra_ctxsize = sizeof(struct crypto_ccm_ctx); in crypto_ccm_create_common()
513 inst->alg in crypto_ccm_create_common()
711 struct aead_alg *alg; crypto_rfc4309_create() local
866 struct crypto_alg *alg; cbcmac_create() local
[all...]
H A Dctr.c130 struct crypto_alg *alg; in crypto_ctr_create() local
137 alg = skcipher_ialg_simple(inst); in crypto_ctr_create()
141 if (alg->cra_blocksize < 4) in crypto_ctr_create()
145 if (alg->cra_blocksize % 4) in crypto_ctr_create()
149 inst->alg.base.cra_blocksize = 1; in crypto_ctr_create()
155 inst->alg.chunksize = alg->cra_blocksize; in crypto_ctr_create()
157 inst->alg.encrypt = crypto_ctr_crypt; in crypto_ctr_create()
158 inst->alg.decrypt = crypto_ctr_crypt; in crypto_ctr_create()
261 struct skcipher_alg *alg; in crypto_rfc3686_create() local
[all...]
H A Dhmac.c188 struct crypto_alg *alg; in hmac_create() local
209 alg = &salg->base; in hmac_create()
218 if (ds > alg->cra_blocksize || in hmac_create()
219 ss < alg->cra_blocksize) in hmac_create()
222 err = crypto_inst_setname(shash_crypto_instance(inst), tmpl->name, alg); in hmac_create()
226 inst->alg.base.cra_priority = alg->cra_priority; in hmac_create()
227 inst->alg.base.cra_blocksize = alg->cra_blocksize; in hmac_create()
228 inst->alg in hmac_create()
[all...]
H A Drng.c33 struct rng_alg *alg = crypto_rng_alg(tfm); in crypto_rng_reset() local
38 atomic64_inc(&rng_get_stat(alg)->seed_cnt); in crypto_rng_reset()
52 err = alg->seed(tfm, seed, slen); in crypto_rng_reset()
56 return crypto_rng_errstat(alg, err); in crypto_rng_reset()
65 static unsigned int seedsize(struct crypto_alg *alg) in seedsize() argument
67 struct rng_alg *ralg = container_of(alg, struct rng_alg, base); in seedsize()
73 struct sk_buff *skb, struct crypto_alg *alg) in crypto_rng_report()
81 rrng.seedsize = seedsize(alg); in crypto_rng_report()
86 static void crypto_rng_show(struct seq_file *m, struct crypto_alg *alg)
88 static void crypto_rng_show(struct seq_file *m, struct crypto_alg *alg) in crypto_rng_show() argument
72 crypto_rng_report( struct sk_buff *skb, struct crypto_alg *alg) crypto_rng_report() argument
94 crypto_rng_report_stat( struct sk_buff *skb, struct crypto_alg *alg) crypto_rng_report_stat() argument
200 crypto_register_rng(struct rng_alg *alg) crypto_register_rng() argument
219 crypto_unregister_rng(struct rng_alg *alg) crypto_unregister_rng() argument
[all...]
H A Dcrypto_engine.c77 struct crypto_engine_alg *alg; in crypto_pump_requests() local
152 alg = container_of(async_req->tfm->__crt_alg, in crypto_pump_requests()
154 op = &alg->op; in crypto_pump_requests()
572 int crypto_engine_register_aead(struct aead_engine_alg *alg) in crypto_engine_register_aead() argument
574 if (!alg->op.do_one_request) in crypto_engine_register_aead()
577 alg->base.base.cra_flags |= CRYPTO_ALG_ENGINE; in crypto_engine_register_aead()
579 return crypto_register_aead(&alg->base); in crypto_engine_register_aead()
583 void crypto_engine_unregister_aead(struct aead_engine_alg *alg) in crypto_engine_unregister_aead() argument
585 crypto_unregister_aead(&alg->base); in crypto_engine_unregister_aead()
617 int crypto_engine_register_ahash(struct ahash_engine_alg *alg) in crypto_engine_register_ahash() argument
628 crypto_engine_unregister_ahash(struct ahash_engine_alg *alg) crypto_engine_unregister_ahash() argument
663 crypto_engine_register_akcipher(struct akcipher_engine_alg *alg) crypto_engine_register_akcipher() argument
674 crypto_engine_unregister_akcipher(struct akcipher_engine_alg *alg) crypto_engine_unregister_akcipher() argument
680 crypto_engine_register_kpp(struct kpp_engine_alg *alg) crypto_engine_register_kpp() argument
691 crypto_engine_unregister_kpp(struct kpp_engine_alg *alg) crypto_engine_unregister_kpp() argument
697 crypto_engine_register_skcipher(struct skcipher_engine_alg *alg) crypto_engine_register_skcipher() argument
708 crypto_engine_unregister_skcipher(struct skcipher_engine_alg *alg) crypto_engine_unregister_skcipher() argument
[all...]
H A Dcmac.c243 struct crypto_alg *alg; in cmac_create() local
261 alg = crypto_spawn_cipher_alg(spawn); in cmac_create()
263 switch (alg->cra_blocksize) { in cmac_create()
272 err = crypto_inst_setname(shash_crypto_instance(inst), tmpl->name, alg); in cmac_create()
276 alignmask = alg->cra_alignmask; in cmac_create()
277 inst->alg.base.cra_alignmask = alignmask; in cmac_create()
278 inst->alg.base.cra_priority = alg->cra_priority; in cmac_create()
279 inst->alg.base.cra_blocksize = alg in cmac_create()
[all...]
H A Dlrw.c303 struct skcipher_alg *alg; in lrw_create() local
339 alg = crypto_skcipher_spawn_alg(spawn); in lrw_create()
342 if (alg->base.cra_blocksize != LRW_BLOCK_SIZE) in lrw_create()
345 if (crypto_skcipher_alg_ivsize(alg)) in lrw_create()
349 &alg->base); in lrw_create()
354 cipher_name = alg->base.cra_name; in lrw_create()
371 if (snprintf(inst->alg.base.cra_name, CRYPTO_MAX_ALG_NAME, in lrw_create()
379 inst->alg.base.cra_priority = alg->base.cra_priority; in lrw_create()
380 inst->alg in lrw_create()
[all...]
H A Dtestmgr.c63 int alg_test(const char *driver, const char *alg, u32 type, u32 mask) in alg_test() argument
140 const char *alg; member
144 int fips_allowed; /* set if alg is allowed in fips mode */
1209 pr_err("alg: generic driver name for \"%s\" would be too long\n", in build_generic_driver_name()
1247 pr_err("alg: %s: %s test failed (wrong result) on test vector %s, cfg=\"%s\"\n", in check_hash_result()
1252 pr_err("alg: %s: %s overran result buffer on test vector %s, cfg=\"%s\"\n", in check_hash_result()
1264 pr_err("alg: shash: %s %s() failed with err %d on test vector %s, cfg=\"%s\"\n", in check_shash_op()
1294 pr_err("alg: shash: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x\n", in test_shash_vec_cfg()
1300 pr_err("alg: shash: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d\n", in test_shash_vec_cfg()
1309 pr_err("alg in test_shash_vec_cfg()
3891 do_test_kpp(struct crypto_kpp *tfm, const struct kpp_testvec *vec, const char *alg) do_test_kpp() argument
4033 test_kpp(struct crypto_kpp *tfm, const char *alg, const struct kpp_testvec *vecs, unsigned int tcount) test_kpp() argument
4257 test_akcipher(struct crypto_akcipher *tfm, const char *alg, const struct akcipher_testvec *vecs, unsigned int tcount) test_akcipher() argument
5842 alg_find_test(const char *alg) alg_find_test() argument
5867 alg_fips_disabled(const char *driver, const char *alg) alg_fips_disabled() argument
5874 alg_test(const char *driver, const char *alg, u32 type, u32 mask) alg_test() argument
[all...]
/third_party/openssl/providers/implementations/include/prov/
H A Dciphercommon_aead.h14 #define IMPLEMENT_aead_cipher(alg, lc, UCMODE, flags, kbits, blkbits, ivbits) \
15 static OSSL_FUNC_cipher_get_params_fn alg##_##kbits##_##lc##_get_params; \
16 static int alg##_##kbits##_##lc##_get_params(OSSL_PARAM params[]) \
21 static OSSL_FUNC_cipher_newctx_fn alg##kbits##lc##_newctx; \
22 static void * alg##kbits##lc##_newctx(void *provctx) \
24 return alg##_##lc##_newctx(provctx, kbits); \
26 const OSSL_DISPATCH ossl_##alg##kbits##lc##_functions[] = { \
27 { OSSL_FUNC_CIPHER_NEWCTX, (void (*)(void))alg##kbits##lc##_newctx }, \
28 { OSSL_FUNC_CIPHER_FREECTX, (void (*)(void))alg##_##lc##_freectx }, \
35 (void (*)(void)) alg##
[all...]
/third_party/node/test/fixtures/wpt/WebCryptoAPI/digest/
H A Ddigest.https.any.js48 Object.keys(digestedData).forEach(function(alg) {
49 var upCase = alg.toUpperCase();
50 var downCase = alg.toLowerCase();
56 assert_true(equalBuffers(result, digestedData[alg][size]), "digest() yielded expected result for " + alg + ":" + size);
58 assert_unreached("digest() threw an error for " + alg + ":" + size + " - " + err.message);
67 assert_true(equalBuffers(result, digestedData[alg][size]), "digest() yielded expected result for " + alg + ":" + size);
69 assert_unreached("digest() threw an error for " + alg + ":" + size + " - " + err.message);
78 assert_true(equalBuffers(result, digestedData[alg][siz
[all...]
/base/security/huks/frameworks/huks_standard/main/common/include/
H A Dhks_base_check.h94 int32_t HksGetKeySize(uint32_t alg, const struct HksBlob *key, uint32_t *keySize);
96 int32_t HksCheckGenKeyPurpose(uint32_t alg, uint32_t inputPurpose, uint32_t keyFlag);
98 int32_t HksGetInputParmasByAlg(uint32_t alg, enum CheckKeyType checkType, const struct HksParamSet *paramSet,
101 int32_t HksCheckFixedParams(uint32_t alg, enum CheckKeyType checkType, const struct ParamsValues *inputParams);
103 int32_t HksCheckGenKeyMutableParams(uint32_t alg, const struct ParamsValues *inputParams);
105 int32_t CheckImportMutableParams(uint32_t alg, const struct ParamsValues *params);
107 int32_t HksCheckSignature(uint32_t cmdId, uint32_t alg, uint32_t keySize, const struct HksBlob *signature);
109 int32_t HksCheckSignVerifyMutableParams(uint32_t cmdId, uint32_t alg, const struct ParamsValues *inputParams);
111 int32_t HksCheckCipherMutableParams(uint32_t cmdId, uint32_t alg, const struct ParamsValues *inputParams);
113 int32_t HksCheckCipherData(uint32_t cmdId, uint32_t alg, cons
[all...]
/third_party/node/deps/openssl/openssl/crypto/engine/
H A Deng_fat.c50 static int int_def_cb(const char *alg, int len, void *arg) in int_def_cb() argument
53 if (alg == NULL) in int_def_cb()
55 if (strncmp(alg, "ALL", len) == 0) in int_def_cb()
57 else if (strncmp(alg, "RSA", len) == 0) in int_def_cb()
59 else if (strncmp(alg, "DSA", len) == 0) in int_def_cb()
61 else if (strncmp(alg, "DH", len) == 0) in int_def_cb()
63 else if (strncmp(alg, "EC", len) == 0) in int_def_cb()
65 else if (strncmp(alg, "RAND", len) == 0) in int_def_cb()
67 else if (strncmp(alg, "CIPHERS", len) == 0) in int_def_cb()
69 else if (strncmp(alg, "DIGEST in int_def_cb()
[all...]
/third_party/openssl/crypto/engine/
H A Deng_fat.c50 static int int_def_cb(const char *alg, int len, void *arg) in int_def_cb() argument
53 if (alg == NULL) in int_def_cb()
55 if (strncmp(alg, "ALL", len) == 0) in int_def_cb()
57 else if (strncmp(alg, "RSA", len) == 0) in int_def_cb()
59 else if (strncmp(alg, "DSA", len) == 0) in int_def_cb()
61 else if (strncmp(alg, "DH", len) == 0) in int_def_cb()
63 else if (strncmp(alg, "EC", len) == 0) in int_def_cb()
65 else if (strncmp(alg, "RAND", len) == 0) in int_def_cb()
67 else if (strncmp(alg, "CIPHERS", len) == 0) in int_def_cb()
69 else if (strncmp(alg, "DIGEST in int_def_cb()
[all...]

Completed in 18 milliseconds

12345678910>>...50