Searched defs:key1 (Results 1 - 8 of 8) sorted by relevance
/bind-9.6-ESV-R11/lib/dns/ |
H A D | gssapi_link.c | 248 gssapi_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 249 gss_ctx_id_t gsskey1 = key1->keydata.gssctx;
|
H A D | openssldsa_link.c | 302 openssldsa_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 306 dsa1 = key1->keydata.dsa;
|
H A D | openssldh_link.c | 104 openssldh_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 108 dh1 = key1->keydata.dh; 133 openssldh_paramcompare(const dst_key_t *key1, const dst_key_t *key2) { argument 137 dh1 = key1->keydata.dh;
|
H A D | opensslrsa_link.c | 655 opensslrsa_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 663 pkey1 = key1->keydata.pkey; 678 rsa1 = key1->keydata.rsa;
|
H A D | dst_api.c | 776 dst_key_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 778 REQUIRE(VALID_KEY(key1)); 781 if (key1 == key2) 783 if (key1 == NULL || key2 == NULL) 785 if (key1->key_alg == key2->key_alg && 786 key1->key_id == key2->key_id && 787 key1->func->compare != NULL && 788 key1->func->compare(key1, key2) == ISC_TRUE) 795 dst_key_paramcompare(const dst_key_t *key1, cons argument [all...] |
H A D | hmac_link.c | 135 hmacmd5_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 138 hkey1 = key1->keydata.hmacmd5; 403 hmacsha1_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 406 hkey1 = key1->keydata.hmacsha1; 672 hmacsha224_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 675 hkey1 = key1->keydata.hmacsha224; 941 hmacsha256_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 944 hkey1 = key1->keydata.hmacsha256; 1210 hmacsha384_compare(const dst_key_t *key1, const dst_key_t *key2) { argument 1213 hkey1 = key1 1479 hmacsha512_compare(const dst_key_t *key1, const dst_key_t *key2) argument [all...] |
/bind-9.6-ESV-R11/bin/tests/dst/ |
H A D | dst_test.c | 157 dst_key_t *key1 = NULL, *key2 = NULL; local 165 ret = dst_key_fromfile(name1, id1, alg, type, current, mctx, &key1); 174 ret = dst_key_tofile(key1, type, tmp); 184 ret = dst_key_computesecret(key1, key2, &b1); 190 ret = dst_key_computesecret(key2, key1, &b2); 211 dst_key_free(&key1);
|
H A D | t_dst.c | 171 dst_key_t *key1 = NULL, *key2 = NULL; local 191 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 27 milliseconds