/bind-9.11.3/bin/tests/system/cookie/ |
H A D | bad-cookie-badsha1.conf | 10 cookie-algorithm sha1; 11 cookie-secret "ebc7701beabb4a40c57d140eeb6733fafba4272fff"; // 168 bits
|
H A D | bad-cookie-badsha256.conf | 10 cookie-algorithm sha256; 11 cookie-secret "ebc7701beabb4a40c57d140eeb6733fafba4272f"; // 160 bits
|
H A D | good-cookie-sha1.conf | 10 cookie-algorithm sha1; 11 cookie-secret "ebc7701beabb4a40c57d140eeb6733fafba4272f"; // 160 bits
|
H A D | good-cookie-sha256.conf | 10 cookie-algorithm sha256; 11 cookie-secret "b174e3800b6734f73268f15831c957860a8ee1229cfb9039c1514836f53efbed";
|
H A D | tests.sh | 56 $DIG +qr +cookie version.bind txt ch @10.53.0.1 -p 5300 > dig.out.test$n 73 $DIG +cookie large.example txt @10.53.0.1 -p 5300 +ignore > dig.out.test$n 82 $DIG +cookie large.example txt @10.53.0.1 -p 5300 > dig.out.test$n.l 83 cookie=`getcookie dig.out.test$n.l` 84 $DIG +qr +cookie=$cookie large.example txt @10.53.0.1 -p 5300 +ignore > dig.out.test$n 93 $DIG +qr +cookie=$cookie large.xxx txt @10.53.0.1 -p 5300 +ignore > dig.out.test$n 102 $DIG +qr +cookie large.example txt @10.53.0.1 -p 5300 > dig.out.test$n 115 grep "10.53.0.2.*\[cookie [all...] |
H A D | bad-cookie-badhex.conf | 10 cookie-secret "012345678901234567890123456789012345678901234567890123456789012";
|
H A D | bad-cookie-toolong.conf | 10 cookie-secret "01234567890123456789012345678901234567890123456789012345678901234567890";
|
/bind-9.11.3/bin/tests/system/cookie/ns3/ |
H A D | named.conf | 34 send-cookie yes; 36 require-server-cookie yes;
|
/bind-9.11.3/bin/tests/system/dnstap/ns1/ |
H A D | named.conf | 26 send-cookie no; 27 require-server-cookie no;
|
/bind-9.11.3/bin/tests/system/dnstap/ns2/ |
H A D | named.conf | 26 send-cookie no; 27 require-server-cookie no;
|
/bind-9.11.3/bin/tests/system/dnstap/ns3/ |
H A D | named.conf | 26 send-cookie no; 27 require-server-cookie no;
|
/bind-9.11.3/bin/tests/system/dnstap/ns4/ |
H A D | named.conf | 26 send-cookie no; 27 require-server-cookie no;
|
/bind-9.11.3/bin/tests/system/cookie/ns2/ |
H A D | named.conf | 21 send-cookie yes;
|
/bind-9.11.3/bin/tests/system/cookie/ns1/ |
H A D | named.conf | 34 send-cookie yes;
|
/bind-9.11.3/lib/dns/include/dns/ |
H A D | adb.h | 750 const unsigned char *cookie, size_t len); 753 * cookie is NULL or len is zero the recorded COOKIE is cleared. 762 unsigned char *cookie, size_t len); 764 * Retieve the saved COOKIE value and store it in 'cookie' which has 772 * The size of the cookie or zero if it doesn't fit in the buffer
|
/bind-9.11.3/bin/tools/ |
H A D | mdig.c | 126 char *cookie; member in struct:query 505 compute_cookie(unsigned char *cookie, size_t len) { argument 508 memmove(cookie, cookie_secret, 8); 572 unsigned char cookie[40]; local 642 if (query->cookie != NULL) { 645 isc_buffer_init(&b, cookie, sizeof(cookie)); 646 result = isc_hex_decodestring(query->cookie, 652 compute_cookie(cookie, 8); 654 opts[i].value = cookie; [all...] |
/bind-9.11.3/lib/dns/ |
H A D | adb.c | 264 unsigned char * cookie; member in struct:dns_adbentry 1831 e->cookie = NULL; 1874 if (e->cookie != NULL) 1875 isc_mem_put(adb->mctx, e->cookie, e->cookielen); 3545 if (entry->cookie != NULL) { 3547 fprintf(f, " [cookie="); 3549 fprintf(f, "%02x", entry->cookie[i]); 4512 const unsigned char *cookie, size_t len) 4522 if (addr->entry->cookie != NULL && 4523 (cookie 4511 dns_adb_setcookie(dns_adb_t *adb, dns_adbaddrinfo_t *addr, const unsigned char *cookie, size_t len) argument 4542 dns_adb_getcookie(dns_adb_t *adb, dns_adbaddrinfo_t *addr, unsigned char *cookie, size_t len) argument [all...] |
H A D | resolver.c | 1984 compute_cc(resquery_t *query, unsigned char *cookie, size_t len) { argument 2006 memmove(cookie, digest, 8); 2029 memmove(cookie, digest, 8); 2053 memmove(cookie, digest, 8); 2311 unsigned char cookie[64]; local 2388 cookie, 2389 sizeof(cookie)); 2391 ednsopts[ednsopt].value = cookie; 2395 compute_cc(query, cookie, 8); 2396 ednsopts[ednsopt].value = cookie; 7604 unsigned char cookie[8]; local 8137 unsigned char cookie[64]; local [all...] |
/bind-9.11.3/bin/named/include/named/ |
H A D | client.h | 164 unsigned char cookie[8]; member in struct:ns_client
|
/bind-9.11.3/bin/named/ |
H A D | client.c | 1554 unsigned char cookie[COOKIE_SIZE]; local 1602 isc_buffer_init(&buf, cookie, sizeof(cookie)); 1611 ednsopts[count].value = cookie; 1789 isc_buffer_putmem(buf, client->cookie, 8); 1829 isc_buffer_putmem(buf, client->cookie, 8); 1851 isc_hmacsha1_update(&hmacsha1, client->cookie, 1852 sizeof(client->cookie)); 1867 isc_buffer_putmem(buf, client->cookie, 8); 1889 isc_hmacsha256_update(&hmacsha256, client->cookie, [all...] |
/bind-9.11.3/bin/dig/include/dig/ |
H A D | dig.h | 187 char *cookie; member in struct:dig_lookup
|
/bind-9.11.3/bin/dig/ |
H A D | dighost.c | 180 unsigned char cookie[8]; variable 850 looknew->cookie = NULL; 946 looknew->cookie = lookold->cookie; 1540 fatal("unable to generate cookie secret"); 2722 if (lookup->cookie != NULL) { 2725 result = isc_hex_decodestring(lookup->cookie, 2731 compute_cookie(cookie, sizeof(cookie)); 2733 opts[i].value = cookie; [all...] |
H A D | dig.c | 174 " +[no]cookie (Add a COOKIE option to the request)\n" 929 case 'o': /* cookie */ 930 FULLCHECK("cookie"); 939 lookup->cookie = hexcookie; 941 lookup->cookie = NULL;
|