/bind-9.11.3/bin/tests/system/redirect/ns1/ |
H A D | sign.sh | 18 key1=`$KEYGEN -q -r $RANDFILE $zone` 21 cat $infile $key1.key $key2.key > $zonefile 29 key1=`$KEYGEN -q -r $RANDFILE -3 $zone` 32 cat $infile $key1.key $key2.key > $zonefile
|
/bind-9.11.3/bin/tests/system/redirect/ns3/ |
H A D | sign.sh | 18 key1=`$KEYGEN -q -r $RANDFILE $zone` 21 cat $infile $key1.key $key2.key > $zonefile 29 key1=`$KEYGEN -q -r $RANDFILE -3 $zone` 32 cat $infile $key1.key $key2.key > $zonefile
|
/bind-9.11.3/bin/tests/system/ecdsa/ns1/ |
H A D | sign.sh | 16 key1=`$KEYGEN -q -r $RANDFILE -a ECDSAP256SHA256 -n zone $zone` 20 cat $infile $key1.key $key2.key > $zonefile 26 cat $key1.key | grep -v '^; ' | $PERL -n -e '
|
/bind-9.11.3/bin/tests/system/eddsa/ns1/ |
H A D | sign.sh | 16 key1=`$KEYGEN -q -r $RANDFILE -a ED25519 -n zone $zone` 21 cat $infile $key1.key $key2.key > $zonefile 27 cat $key1.key | grep -v '^; ' | $PERL -n -e '
|
/bind-9.11.3/bin/tests/system/gost/ns1/ |
H A D | sign.sh | 16 key1=`$KEYGEN -q -r $RANDFILE -a ECCGOST -n zone $zone` 20 cat $infile $key1.key $key2.key > $zonefile 26 cat $key1.key | grep -v '^; ' | $PERL -n -e '
|
/bind-9.11.3/bin/tests/system/dns64/ns1/ |
H A D | sign.sh | 18 key1=`$KEYGEN -q -r $RANDFILE $zone` 21 cat $infile $key1.key $key2.key > $zonefile
|
/bind-9.11.3/bin/tests/system/dnssec/ns2/ |
H A D | sign.sh | 183 key1=`$KEYGEN -q -r $RANDFILE -a RSASHA256 -b 1024 -n zone -fk $zone` 185 cat $key1.key $key2.key >> $zonefile 186 $SIGNER -P -3 - -A -H 1 -g -r $RANDFILE -o $zone -k $key1 $zonefile $key2 > /dev/null 191 key1=`$KEYGEN -q -r $RANDFILE -a RSASHA1 -b 1024 -n zone -fk $zone` 193 $DSFROMKEY -C $key1.key > $key1.cds 194 cat $infile $key1.key $key2.key $key1.cds >$zonefile 200 key1=`$KEYGEN -q -r $RANDFILE -a RSASHA1 -b 1024 -n zone -fk $zone` 202 cat $infile $key1 [all...] |
/bind-9.11.3/bin/tests/system/xfer/ns8/ |
H A D | named.conf | 28 key key1. { 34 key key1.;
|
/bind-9.11.3/bin/tests/system/dsdigest/ns1/ |
H A D | sign.sh | 21 key1=`$KEYGEN -q -r $RANDFILE -a RSASHA1 -b 1024 -n zone $zone` 24 cat $infile $key1.key $key2.key > $zonefile
|
/bind-9.11.3/bin/tests/dst/ |
H A D | dst_test.c | 152 dst_key_t *key1 = NULL, *key2 = NULL; local 160 ret = dst_key_fromfile(name1, id1, alg, type, current, mctx, &key1); 169 ret = dst_key_tofile(key1, type, tmp); 179 ret = dst_key_computesecret(key1, key2, &b1); 185 ret = dst_key_computesecret(key2, key1, &b2); 206 dst_key_free(&key1);
|
H A D | t_dst.c | 167 dst_key_t *key1 = NULL, *key2 = NULL; local 187 ret = dst_key_fromfile(name1, id1, alg, type, current, mctx, &key1); 223 ret = dst_key_tofile(key1, type, tmp); 242 ret = dst_key_computesecret(key1, key2, &b1); 251 ret = dst_key_computesecret(key2, key1, &b2); 269 if (key1 != NULL) 270 dst_key_free(&key1);
|
/bind-9.11.3/lib/dns/ |
H A D | dnssec.c | 2080 dns_dnsseckey_t *key, *key1, *key2, *next; local 2130 for (key1 = ISC_LIST_HEAD(*newkeys); key1 != NULL; key1 = next) { 2133 next = ISC_LIST_NEXT(key1, link); 2138 int f1 = dst_key_flags(key1->key); 2143 dst_key_alg(key1->key) == dst_key_alg(key2->key) && 2144 dst_key_pubcompare(key1->key, key2->key, 2147 r1 = dst_key_flags(key1->key) & 2158 ISC_LIST_UNLINK(*newkeys, key1, lin [all...] |
H A D | dst_api.c | 1097 comparekeys(const dst_key_t *key1, const dst_key_t *key2, argument 1099 isc_boolean_t (*compare)(const dst_key_t *key1, 1103 REQUIRE(VALID_KEY(key1)); 1106 if (key1 == key2) 1109 if (key1->key_alg != key2->key_alg) 1112 if (key1->key_id != key2->key_id) { 1116 if (key1->key_alg == DST_ALG_RSAMD5) 1119 if ((key1->key_flags & DNS_KEYFLAG_REVOKE) == 1122 if (key1->key_id != key2->key_rid && 1123 key1 1139 pub_compare(const dst_key_t *key1, const dst_key_t *key2) argument 1180 dst_key_compare(const dst_key_t *key1, const dst_key_t *key2) argument 1185 dst_key_pubcompare(const dst_key_t *key1, const dst_key_t *key2, isc_boolean_t match_revoked_key) argument 1193 dst_key_paramcompare(const dst_key_t *key1, const dst_key_t *key2) argument [all...] |
H A D | dst_internal.h | 204 isc_boolean_t (*compare)(const dst_key_t *key1, const dst_key_t *key2); 205 isc_boolean_t (*paramcompare)(const dst_key_t *key1,
|
H A D | hmac_link.c | 129 hmacmd5_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 132 hkey1 = key1->keydata.hmacmd5; 437 hmacsha1_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 440 hkey1 = key1->keydata.hmacsha1; 728 hmacsha224_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 731 hkey1 = key1->keydata.hmacsha224; 1015 hmacsha256_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 1018 hkey1 = key1->keydata.hmacsha256; 1302 hmacsha384_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 1305 hkey1 = key1 1589 hmacsha512_compare(const dst_key_t *key1, const dst_key_t *key2) argument [all...] |
H A D | gssapi_link.c | 247 gssapi_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 248 gss_ctx_id_t gsskey1 = key1->keydata.gssctx;
|
H A D | openssldh_link.c | 165 openssldh_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 171 dh1 = key1->keydata.dh; 198 openssldh_paramcompare(const dst_key_t *key1, const dst_key_t *key2) { argument 202 dh1 = key1->keydata.dh;
|
H A D | opensslecdsa_link.c | 258 opensslecdsa_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 261 EVP_PKEY *pkey1 = key1->keydata.pkey;
|
H A D | openssleddsa_link.c | 359 openssleddsa_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 361 EVP_PKEY *pkey1 = key1->keydata.pkey;
|
H A D | opensslgost_link.c | 195 opensslgost_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 198 pkey1 = key1->keydata.pkey;
|
H A D | pkcs11dh_link.c | 260 pkcs11dh_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 264 dh1 = key1->keydata.pkey; 321 pkcs11dh_paramcompare(const dst_key_t *key1, const dst_key_t *key2) { argument 325 dh1 = key1->keydata.pkey;
|
H A D | openssldsa_link.c | 383 openssldsa_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 390 dsa1 = key1->keydata.dsa;
|
/bind-9.11.3/bin/tests/system/verify/zones/ |
H A D | genzones.sh | 63 key1=`$KEYGEN -r $RANDFILE ${zone} 2>kg.out` || dumpit kg.out$n 64 cat unsigned.db $key1.key > ${file} 67 key1=`$KEYGEN -r $RANDFILE -fK ${zone} 2>kg.out` || dumpit kg.out$n 68 cat unsigned.db $key1.key > ${file} 71 key1=`$KEYGEN -r $RANDFILE ${zone} 2>kg.out` || dumpit kg.out$n 73 cat unsigned.db $key1.key $key2.key > ${file}
|
/bind-9.11.3/lib/dns/include/dst/ |
H A D | dst.h | 605 dst_key_compare(const dst_key_t *key1, const dst_key_t *key2); 613 *\li "key1" is a valid key. 622 dst_key_pubcompare(const dst_key_t *key1, const dst_key_t *key2, 634 *\li "key1" is a valid key. 643 dst_key_paramcompare(const dst_key_t *key1, const dst_key_t *key2); 649 *\li "key1" is a valid key.
|
/bind-9.11.3/bin/tests/system/dnssec/ |
H A D | tests.sh | 1274 key1=`$KEYGEN -K signer -q -r $RANDFILE -a NSEC3RSASHA1 -b 1024 -n zone $zone` 1278 cat example.db.in $key1.key $key2.key > example.db 1288 key1=`$KEYGEN -K signer -q -r $RANDFILE -a NSEC3RSASHA1 -b 1024 -n zone $zone` 1292 cat example.db.in $key1.key $key2.key > example.db 1313 key1=`$KEYGEN -K signer -q -r $RANDFILE -a NSEC3RSASHA1 -b 1024 -n zone $zone` 1317 cat example.db.in $key1.key $key2.key > example3.db 1339 key1=`$KEYGEN -K signer -q -r $RANDFILE -a RSASHA1 -b 1024 -n zone $zone` 1343 cat example.db.in $key1.key $key2.key > example.db 1356 key1=`$KEYGEN -K signer -q -r $RANDFILE -f KSK -a RSASHA1 -b 1024 -n zone $zone` 1363 cat example.db.in $key1 [all...] |