| /src/crypto/external/apache2/openssl/dist/test/recipes/ |
| 15-test_genpkey.t | 17 my @algs = (); 18 push @algs, qw(RSA) unless disabled("rsa"); 19 push @algs, qw(DSA) unless disabled("dsa"); 20 push @algs, qw(DH DHX) unless disabled("dh"); 21 push @algs, qw(EC) unless disabled("ec"); 22 push @algs, qw(X25519 X448) unless disabled("ecx"); 23 push @algs, qw(SM2) unless disabled("sm2"); 25 plan tests => scalar(@algs); 27 foreach (@algs) {
|
| 70-test_sslsigalgs.t | 69 #Test 1: Default sig algs should succeed 82 #Test 2: Sending no sig algs extension in TLSv1.3 should fail 88 #Test 3: Sending an empty sig algs extension in TLSv1.3 should fail 94 #Test 4: Sending a list with no recognised sig algs in TLSv1.3 should fail 100 #Test 5: Sending a sig algs list without pss for an RSA cert in TLSv1.3 107 #Test 6: Sending only TLSv1.3 PSS sig algs in TLSv1.3 should succeed 148 #Test 9: Sending a valid sig algs list but not including a sig type that 161 #Test 10: Sending a full list of TLSv1.3 sig algs but negotiating TLSv1.2 176 #Test 11: Sending no sig algs extension in TLSv1.2 will make it use 185 #Test 12: Sending no sig algs extension in TLSv1.2 should fail at securit [all...] |
| 15-test_ml_dsa_codecs.t | 23 my @algs = qw(44 65 87); 29 plan tests => @algs * (23 + 10 * @formats); 35 foreach my $alg (@algs) {
|
| 15-test_ml_kem_codecs.t | 23 my @algs = qw(512 768 1024); 29 plan tests => @algs * (25 + 10 * @formats); 34 foreach my $alg (@algs) {
|
| /src/external/mpl/bind/dist/bin/tests/system/isctest/vars/ |
| algorithms.py | 178 def _filter_supported(algs: AlgorithmSet) -> AlgorithmSet: 181 for alg_type in algs._fields: 182 candidates = getattr(algs, alg_type) 196 def _select_random(algs: AlgorithmSet, stable_period=STABLE_PERIOD) -> AlgorithmSet: 212 alternative = algs.alternative 213 disabled = algs.disabled 228 if isinstance(algs.default, Algorithm): 229 default = algs.default 231 candidates = algs.default 253 def _algorithms_env(algs: AlgorithmSet, name: str) -> dict[str, str] [all...] |
| /src/crypto/external/apache2/openssl/dist/fuzz/ |
| smime.c | 32 STACK_OF(X509_ALGOR) *algs; 36 algs = PKCS7_get_smimecap(sk_PKCS7_SIGNER_INFO_value(p7si, i)); 37 sk_X509_ALGOR_pop_free(algs, X509_ALGOR_free);
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| filterprov.c | 100 const OSSL_ALGORITHM *algs) 111 if (globs->dispatch[i].alg == algs) 113 OSSL_PROVIDER_unquery_operation(globs->deflt, operation_id, algs); 214 const OSSL_ALGORITHM *algs; local 234 for (algs = provalgs; algs->algorithm_names != NULL; algs++) { 235 const char *found = strstr(algs->algorithm_names, name); 241 if (found != algs->algorithm_names && found[-1] != ':') 248 globs->dispatch[globs->num_dispatch].alg[algnum++] = *algs; [all...] |
| /src/crypto/external/bsd/openssl/dist/test/ |
| filterprov.c | 98 const OSSL_ALGORITHM *algs) 109 if (globs->dispatch[i].alg == algs) 111 OSSL_PROVIDER_unquery_operation(globs->deflt, operation_id, algs); 175 const OSSL_ALGORITHM *algs; local 195 for (algs = provalgs; algs->algorithm_names != NULL; algs++) { 196 const char *found = strstr(algs->algorithm_names, name); 202 if (found != algs->algorithm_names && found[-1] != ':') 209 globs->dispatch[globs->num_dispatch].alg[algnum++] = *algs; [all...] |
| /src/crypto/dist/ipsec-tools/src/racoon/ |
| sainfo.h | 61 struct sainfoalg *algs[MAXALGCLASS]; member in struct:sainfo
|
| proposal.c | 635 if (sainfo->algs[algclass_ipsec_auth] == NULL) { 641 for (a = sainfo->algs[algclass_ipsec_auth]; a; a = a->next) { 662 if (sainfo->algs[algclass_ipsec_enc] == NULL) { 668 for (a = sainfo->algs[algclass_ipsec_enc]; a; a = a->next) { 669 for (b = sainfo->algs[algclass_ipsec_auth]; b; b = b->next) { 688 if (sainfo->algs[algclass_ipsec_comp] == NULL) { 694 for (a = sainfo->algs[algclass_ipsec_comp]; a; a = a->next) {
|
| /src/crypto/external/bsd/openssl/dist/include/openssl/ |
| provider.h | 45 int operation_id, const OSSL_ALGORITHM *algs);
|
| /src/crypto/external/apache2/openssl/dist/ssl/ |
| ssl_cert_comp.c | 161 static int ssl_set_cert_comp_pref(int *prefs, int *algs, size_t len) 169 /* Note that |len| is the number of |algs| elements */ 171 if (len == 0 || algs == NULL) { 181 if (algs[i] != 0 && ossl_comp_has_alg(algs[i])) { 183 if (already_set[algs[i]]) 185 tmp_prefs[j++] = algs[i]; 186 already_set[algs[i]] = 1; 361 int SSL_CTX_set1_cert_comp_preference(SSL_CTX *ctx, int *algs, size_t len) 364 return ssl_set_cert_comp_pref(ctx->cert_comp_prefs, algs, len) [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/property/ |
| property.c | 65 SPARSE_ARRAY_OF(ALGORITHM) *algs; 67 * Lock to protect the |algs| array from concurrent writing, when 82 /* Count of the query cache entries for all algs */ 85 /* Flag: 1 if query cache entries for all algs need flushing */ 243 ossl_sa_ALGORITHM_set(store->algs, idx, NULL); 257 if ((res->algs = ossl_sa_ALGORITHM_new()) == NULL 270 if (store->algs != NULL) 271 ossl_sa_ALGORITHM_doall_arg(store->algs, &alg_cleanup, store); 272 ossl_sa_ALGORITHM_free(store->algs); 291 return ossl_sa_ALGORITHM_get(store->algs, nid) [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/ |
| provider.c | 98 const OSSL_ALGORITHM *algs) 100 ossl_provider_unquery_operation(prov, operation_id, algs);
|
| /src/crypto/external/bsd/openssl/dist/crypto/ |
| provider.c | 87 const OSSL_ALGORITHM *algs) 89 ossl_provider_unquery_operation(prov, operation_id, algs);
|
| /src/crypto/external/apache2/openssl/dist/include/openssl/ |
| provider.h | 79 int operation_id, const OSSL_ALGORITHM *algs);
|
| /src/crypto/external/bsd/openssl/dist/test/recipes/ |
| 70-test_sslsigalgs.t | 56 #Test 1: Default sig algs should succeed 69 #Test 2: Sending no sig algs extension in TLSv1.3 should fail 75 #Test 3: Sending an empty sig algs extension in TLSv1.3 should fail 81 #Test 4: Sending a list with no recognised sig algs in TLSv1.3 should fail 87 #Test 5: Sending a sig algs list without pss for an RSA cert in TLSv1.3 94 #Test 6: Sending only TLSv1.3 PSS sig algs in TLSv1.3 should succeed 115 #Test 8: Sending a valid sig algs list but not including a sig type that 128 #Test 9: Sending a full list of TLSv1.3 sig algs but negotiating TLSv1.2 143 #Test 10: Sending no sig algs extension in TLSv1.2 will make it use 152 #Test 11: Sending no sig algs extension in TLSv1.2 should fail at securit [all...] |
| /src/crypto/external/bsd/openssl.old/dist/test/recipes/ |
| 70-test_sslsigalgs.t | 56 #Test 1: Default sig algs should succeed 67 #Test 2: Sending no sig algs extension in TLSv1.3 should fail 73 #Test 3: Sending an empty sig algs extension in TLSv1.3 should fail 79 #Test 4: Sending a list with no recognised sig algs in TLSv1.3 should fail 85 #Test 5: Sending a sig algs list without pss for an RSA cert in TLSv1.3 92 #Test 6: Sending only TLSv1.3 PSS sig algs in TLSv1.3 should succeed 113 #Test 8: Sending a valid sig algs list but not including a sig type that 126 #Test 9: Sending a full list of TLSv1.3 sig algs but negotiating TLSv1.2 141 #Test 10: Sending no sig algs extension in TLSv1.2 should succeed at 150 #Test 11: Sending no sig algs extension in TLSv1.2 should fail at securit [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/property/ |
| property.c | 67 SPARSE_ARRAY_OF(ALGORITHM) * algs; 69 * Lock to protect the |algs| array from concurrent writing, when 84 /* Count of the query cache entries for all algs */ 87 /* Flag: 1 if query cache entries for all algs need flushing */ 236 ossl_sa_ALGORITHM_set(store->algs, idx, NULL); 250 if ((res->algs = ossl_sa_ALGORITHM_new()) == NULL 263 if (store->algs != NULL) 264 ossl_sa_ALGORITHM_doall_arg(store->algs, &alg_cleanup, store); 265 ossl_sa_ALGORITHM_free(store->algs); 284 return ossl_sa_ALGORITHM_get(store->algs, nid) [all...] |
| /src/crypto/external/apache2/openssl/dist/include/internal/ |
| provider.h | 97 const OSSL_ALGORITHM *algs);
|
| /src/crypto/external/bsd/openssl/dist/include/internal/ |
| provider.h | 96 const OSSL_ALGORITHM *algs);
|
| /src/usr.bin/netstat/ |
| fast_ipsec.c | 80 algname(size_t a, const char *algs[], size_t nalgs) 85 return algs[a];
|
| /src/crypto/external/bsd/openssh/dist/ |
| kex-names.c | 179 /* returns non-zero if proposal contains any algorithm from algs */ 181 kex_has_any_alg(const char *proposal, const char *algs) 185 if ((cp = match_list(proposal, algs, NULL)) == NULL)
|
| /src/crypto/external/bsd/openssl/dist/crypto/cms/ |
| cms_sd.c | 1039 int CMS_add_smimecap(CMS_SignerInfo *si, STACK_OF(X509_ALGOR) *algs) 1044 smderlen = i2d_X509_ALGORS(algs, &smder); 1053 int CMS_add_simple_smimecap(STACK_OF(X509_ALGOR) **algs, 1072 if (*algs == NULL) 1073 *algs = sk_X509_ALGOR_new_null(); 1074 if (*algs == NULL || !sk_X509_ALGOR_push(*algs, alg))
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/cms/ |
| cms_sd.c | 880 int CMS_add_smimecap(CMS_SignerInfo *si, STACK_OF(X509_ALGOR) *algs) 884 smderlen = i2d_X509_ALGORS(algs, &smder); 893 int CMS_add_simple_smimecap(STACK_OF(X509_ALGOR) **algs, 913 if (*algs == NULL) 914 *algs = sk_X509_ALGOR_new_null(); 915 if (*algs == NULL || !sk_X509_ALGOR_push(*algs, alg)) {
|