Searched defs:key1 (Results 1 - 19 of 19) sorted by relevance

/bind-9.11.3/lib/dns/
H A Dopenssleddsa_link.c359 openssleddsa_compare(const dst_key_t *key1, const dst_key_t *key2) { argument
361 EVP_PKEY *pkey1 = key1->keydata.pkey;
H A Dgssapi_link.c247 gssapi_compare(const dst_key_t *key1, const dst_key_t *key2) { argument
248 gss_ctx_id_t gsskey1 = key1->keydata.gssctx;
H A Dopensslecdsa_link.c258 opensslecdsa_compare(const dst_key_t *key1, const dst_key_t *key2) { argument
261 EVP_PKEY *pkey1 = key1->keydata.pkey;
H A Dopensslgost_link.c195 opensslgost_compare(const dst_key_t *key1, const dst_key_t *key2) { argument
198 pkey1 = key1->keydata.pkey;
H A Dpkcs11dh_link.c260 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 Dpkcs11dsa_link.c429 pkcs11dsa_compare(const dst_key_t *key1, const dst_key_t *key2) { argument
433 dsa1 = key1->keydata.pkey;
H A Dpkcs11ecdsa_link.c374 pkcs11ecdsa_compare(const dst_key_t *key1, const dst_key_t *key2) { argument
378 ec1 = key1->keydata.pkey;
H A Dpkcs11eddsa_link.c366 pkcs11eddsa_compare(const dst_key_t *key1, const dst_key_t *key2) { argument
370 ec1 = key1->keydata.pkey;
H A Dpkcs11gost_link.c428 pkcs11gost_compare(const dst_key_t *key1, const dst_key_t *key2) { argument
432 gost1 = key1->keydata.pkey;
H A Dopenssldh_link.c165 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 Dopenssldsa_link.c383 openssldsa_compare(const dst_key_t *key1, const dst_key_t *key2) { argument
390 dsa1 = key1->keydata.dsa;
H A Dopensslrsa_link.c882 opensslrsa_compare(const dst_key_t *key1, const dst_key_t *key2) { argument
895 pkey1 = key1->keydata.pkey;
910 rsa1 = key1->keydata.rsa;
H A Dpkcs11rsa_link.c1114 pkcs11rsa_compare(const dst_key_t *key1, const dst_key_t *key2) { argument
1118 rsa1 = key1->keydata.pkey;
H A Dhmac_link.c129 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 Drpz.c1034 diff_keys(const dns_rpz_cidr_key_t *key1, dns_rpz_prefix_t prefix1, argument
1048 delta = key1->w[i] ^ key2->w[i];
H A Ddnssec.c2080 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 Ddst_api.c1097 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...]
/bind-9.11.3/bin/tests/dst/
H A Ddst_test.c152 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 Dt_dst.c167 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);

Completed in 71 milliseconds