HomeSort by: relevance | last modified time | path
    Searched defs:algorithms (Results 1 - 10 of 10) sorted by relevancy

  /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/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/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...]
server.c 1696 const cfg_obj_t *algorithms; local
1709 algorithms = cfg_tuple_get(disabled, "algorithms");
1710 for (element = cfg_list_first(algorithms); element != NULL;
5097 * Set supported DNSSEC algorithms.
5100 (void)named_config_get(maps, "disable-algorithms", &disabled);
  /src/external/bsd/libfido2/dist/src/fido/
types.h 273 fido_algo_array_t algorithms; /* list of supported algorithms */ member in struct:fido_cbor_info
  /src/external/mpl/bind/dist/lib/isccfg/
check.c 399 obj = cfg_tuple_get(disabled, "algorithms");
1650 * Set supported DNSSEC algorithms.
1653 (void)cfg_map_get(options, "disable-algorithms", &obj);
4301 static const algorithmtable algorithms[] = { local
4332 for (i = 0; algorithms[i].name != NULL; i++) {
4333 len = strlen(algorithms[i].name);
4334 if (strncasecmp(algorithms[i].name, algorithm, len) == 0 &&
4336 (algorithms[i].size != 0 && algorithm[len] == '-')))
4341 if (algorithms[i].name == NULL) {
4351 digestbits > algorithms[i].size
    [all...]
  /src/external/mpl/bind/dist/lib/dns/
resolver.c 573 dns_nametree_t *algorithms; member in struct:dns_resolver
10081 dns_nametree_detach(&res->algorithms);
10231 dns_nametree_create(res->mctx, DNS_NAMETREE_BITS, "algorithms",
10232 &res->algorithms);
10963 return dns_nametree_add(resolver->algorithms, name, alg);
10987 if (dns_nametree_covered(resolver->algorithms, name, NULL, alg)) {
zone.c 3277 * Check for deprecated KEY algorithms
3659 "all DNSKEY algorithms found are deprecated");
3963 * apex to exist and contain no keys using NSEC-only algorithms.
23281 unsigned char algorithms[256]; local
23333 memset(algorithms, notexpected, sizeof(algorithms));
23382 if (algorithms[structcds.algorithm] == 0) {
23383 algorithms[structcds.algorithm] = expected;
23399 algorithms[structcds.algorithm] = found;
23406 for (i = 0; i < sizeof(algorithms); i++)
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/
resolver.c 547 dns_rbt_t *algorithms; member in struct:dns_resolver
10603 res->algorithms = NULL;
11555 unsigned char *algorithms = node; local
11558 isc_mem_put(mctx, algorithms, *algorithms);
11568 if (resolver->algorithms != NULL) {
11569 dns_rbt_destroy(&resolver->algorithms);
11581 unsigned char *algorithms; local
11599 if (resolver->algorithms == NULL) {
11601 resolver->mctx, &resolver->algorithms);
11655 unsigned char *algorithms; local
    [all...]
zone.c 3876 * apex to exist and contain no keys using NSEC-only algorithms.
22079 unsigned char algorithms[256]; local
22130 memset(algorithms, notexpected, sizeof(algorithms));
22156 if (algorithms[structcds.algorithm] == 0) {
22157 algorithms[structcds.algorithm] = expected;
22173 algorithms[structcds.algorithm] = found;
22180 for (i = 0; i < sizeof(algorithms); i++) {
22182 if (algorithms[i] != notexpected) {
22186 } else if (algorithms[i] == expected)
    [all...]

Completed in 80 milliseconds