HomeSort by: relevance | last modified time | path
    Searched refs:algorithms (Results 1 - 25 of 55) sorted by relevancy

1 2 3

  /src/crypto/external/bsd/heimdal/dist/lib/otp/
otp.c 44 static OtpAlgorithm algorithms[] = { variable
55 for (i = 0; i < sizeof(algorithms)/sizeof(*algorithms); ++i)
56 if (strcmp (name, algorithms[i].name) == 0)
57 return &algorithms[i];
  /src/external/mpl/bind/dist/bin/tests/system/dnssec/ns4/
named2.conf.j2 28 disable-algorithms "digest-alg-unsupported.example." { ECDSAP384SHA384; };
31 disable-algorithms "badalg.secure.example." { ECDSAP256SHA256; };
32 disable-algorithms "z.secure.example." { ECDSAP256SHA256; };
33 disable-algorithms "ent.secure.example." { ECDSAP256SHA256; };
named3.conf.j2 31 disable-algorithms "digest-alg-unsupported.example." { ECDSAP384SHA384; };
34 disable-algorithms "badalg.secure.example." { ECDSAP256SHA256; };
35 disable-algorithms "z.secure.example." { ECDSAP256SHA256; };
36 disable-algorithms "ent.secure.example." { ECDSAP256SHA256; };
named.conf.j2 33 disable-algorithms "digest-alg-unsupported.example." { ECDSAP384SHA384; };
36 disable-algorithms "badalg.secure.example." { ECDSAP256SHA256; };
37 disable-algorithms "z.secure.example." { ECDSAP256SHA256; };
38 disable-algorithms "ent.secure.example." { ECDSAP256SHA256; };
named4.conf.j2 24 disable-algorithms "digest-alg-unsupported.example." { ECDSAP384SHA384; };
27 disable-algorithms "badalg.secure.example." { ECDSAP256SHA256; };
28 disable-algorithms "z.secure.example." { ECDSAP256SHA256; };
29 disable-algorithms "ent.secure.example." { ECDSAP256SHA256; };
  /src/external/mpl/bind/dist/bin/tests/system/isctest/vars/
__init__.py 15 from . import algorithms, autoconf, basic, dirs, features, openssl, ports namespace
20 "algorithms",
34 algorithms.init_crypto_supported()
35 algorithms.set_algorithm_set(os.getenv("ALGORITHM_SET"))
all.py 14 from .algorithms import ALG_VARS, CRYPTO_SUPPORTED_VARS
  /src/crypto/external/bsd/openssl.old/dist/test/ssl-tests/
01-simple.conf 6 test-1 = 1-Server signature algorithms bug
33 [1-Server signature algorithms bug]
34 ssl_conf = 1-Server signature algorithms bug-ssl
36 [1-Server signature algorithms bug-ssl]
37 server = 1-Server signature algorithms bug-server
38 client = 1-Server signature algorithms bug-client
40 [1-Server signature algorithms bug-server]
46 [1-Server signature algorithms bug-client]
  /src/external/bsd/nsd/dist/simdzone/src/generic/
algorithm.h 28 static const algorithm_t algorithms[32] = { variable
54 { &algorithms[2], // DH (0)
56 { &algorithms[10], // RSASHA512 (1)
59 { &algorithms[7], // RSASHA1-NSEC3-SHA1 (2)
63 { &algorithms[8], // RSASHA256 (3)
66 { &algorithms[13], // ECDSAP256SHA256 (4)
69 { &algorithms[0], // unknown
71 { &algorithms[6], // DSA-NSEC-SHA1 (6)
74 { &algorithms[1], // RSAMD5 (7)
76 { &algorithms[5], // RSASHA1 (8
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/dnssec/ns8/
named.conf.j2 27 disable-algorithms "disabled.managed." { @DISABLED_ALGORITHM@; };
28 disable-algorithms "disabled.trusted." { @DISABLED_ALGORITHM@; };
  /src/external/mpl/bind/dist/bin/tests/system/dnssec/ns6/
named.conf.j2 26 disable-algorithms . { @ALTERNATIVE_ALGORITHM@; };
  /src/tests/net/if_ipsec/
Makefile 11 ../ipsec/common.sh ../ipsec/algorithms.sh
  /src/external/mpl/bind/dist/contrib/scripts/
check-secure-delegation.pl.in 32 my %algorithms = ();
49 $algorithms{"$words[5]"} = 1;
95 # Do we have signatures for all DNSKEY algorithms?
101 # Do we have a matching self signed DNSKEY for all DNSSEC algorithms
104 foreach $alg ( keys %algorithms ) {
  /src/tests/net/ipsec/
Makefile 12 TESTS_SH_SRC_t_${name}= ../net_common.sh ./common.sh ./algorithms.sh \
  /src/external/bsd/zstd/dist/contrib/match_finders/
README.md 4 /* This match finder leverages techniques used in file comparison algorithms
16 * Various 'diffing' algorithms utilize this notion of edit distance and
27 * algorithms such as GNU diff, bsdiff, and Xdelta.
  /src/external/mpl/bind/dist/bin/tests/system/nsec3/
tests_nsec3_restart.py 17 from isctest.vars.algorithms import Algorithm
tests_nsec3_change.py 20 from isctest.vars.algorithms import Algorithm
tests_nsec3_initial.py 18 from isctest.vars.algorithms import RSASHA1, Algorithm
tests_nsec3_retransfer.py 19 from isctest.vars.algorithms import RSASHA256
  /src/external/bsd/libfido2/dist/src/
info.c 313 case 10: /* algorithms */
314 return (decode_algorithms(val, &ci->algorithms));
440 fido_algo_array_free(&ci->algorithms);
604 return (ci->algorithms.len);
610 if (idx >= ci->algorithms.len)
613 return (ci->algorithms.ptr[idx].type);
619 if (idx >= ci->algorithms.len)
622 return (ci->algorithms.ptr[idx].cose);
  /src/external/mpl/bind/dist/bin/named/
config.c 968 } algorithms[] = { { "hmac-md5", hmacmd5, DST_ALG_HMACMD5, 128 }, variable in typeref:struct:keyalgorithms
986 for (i = 0; algorithms[i].str != NULL; i++) {
987 len = strlen(algorithms[i].str);
988 if (strncasecmp(algorithms[i].str, str, len) == 0 &&
990 (algorithms[i].size != 0 && str[len] == '-')))
995 if (algorithms[i].str == NULL) {
1003 if (bits > algorithms[i].size) {
1006 } else if (algorithms[i].size == 0) {
1009 bits = algorithms[i].size;
1011 SET_IF_NOT_NULL(typep, algorithms[i].type)
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/asn1/
x_algor.c 22 ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF, 0, algorithms, X509_ALGOR)
  /src/crypto/external/apache2/openssl/dist/crypto/asn1/
x_algor.c 23 ASN1_ITEM_TEMPLATE(X509_ALGORS) = ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF, 0, algorithms, X509_ALGOR)
  /src/crypto/external/bsd/openssl/dist/crypto/asn1/
x_algor.c 24 ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF, 0, algorithms, X509_ALGOR)
  /src/sys/modules/examples/luareadhappy/
happy.lua 36 -- For more information on happy numbers, and the algorithms, see

Completed in 57 milliseconds

1 2 3