Searched defs:hmac (Results 1 - 2 of 2) sorted by relevance
/bind-9.6-ESV-R11/bin/named/ |
H A D | config.c | 748 hmacsha256, hmacsha384, hmacsha512 } hmac; member in struct:keyalgorithms 751 { "hmac-md5", hmacmd5, 128 }, 752 { "hmac-md5.sig-alg.reg.int", hmacmd5, 0 }, 753 { "hmac-md5.sig-alg.reg.int.", hmacmd5, 0 }, 754 { "hmac-sha1", hmacsha1, 160 }, 755 { "hmac-sha224", hmacsha224, 224 }, 756 { "hmac-sha256", hmacsha256, 256 }, 757 { "hmac-sha384", hmacsha384, 384 }, 758 { "hmac-sha512", hmacsha512, 512 }, 792 switch (algorithms[i].hmac) { [all...] |
/bind-9.6-ESV-R11/bin/nsupdate/ |
H A D | nsupdate.c | 416 parse_hmac(dns_name_t **hmac, const char *hmacstr, size_t len) { argument 421 REQUIRE(hmac != NULL && *hmac == NULL); 430 if (strcasecmp(buf, "hmac-md5") == 0) { 431 *hmac = DNS_TSIG_HMACMD5_NAME; 432 } else if (strncasecmp(buf, "hmac-md5-", 9) == 0) { 433 *hmac = DNS_TSIG_HMACMD5_NAME; 438 } else if (strcasecmp(buf, "hmac-sha1") == 0) { 439 *hmac = DNS_TSIG_HMACSHA1_NAME; 440 } else if (strncasecmp(buf, "hmac [all...] |
Completed in 1776 milliseconds