Lines Matching defs:hkey1
136 dst_hmacmd5_key_t *hkey1, *hkey2;
138 hkey1 = key1->keydata.hmacmd5;
141 if (hkey1 == NULL && hkey2 == NULL)
143 else if (hkey1 == NULL || hkey2 == NULL)
146 if (isc_safe_memcmp(hkey1->key, hkey2->key, HMAC_LEN))
404 dst_hmacsha1_key_t *hkey1, *hkey2;
406 hkey1 = key1->keydata.hmacsha1;
409 if (hkey1 == NULL && hkey2 == NULL)
411 else if (hkey1 == NULL || hkey2 == NULL)
414 if (isc_safe_memcmp(hkey1->key, hkey2->key, ISC_SHA1_DIGESTLENGTH))
673 dst_hmacsha224_key_t *hkey1, *hkey2;
675 hkey1 = key1->keydata.hmacsha224;
678 if (hkey1 == NULL && hkey2 == NULL)
680 else if (hkey1 == NULL || hkey2 == NULL)
683 if (isc_safe_memcmp(hkey1->key, hkey2->key, ISC_SHA224_DIGESTLENGTH))
942 dst_hmacsha256_key_t *hkey1, *hkey2;
944 hkey1 = key1->keydata.hmacsha256;
947 if (hkey1 == NULL && hkey2 == NULL)
949 else if (hkey1 == NULL || hkey2 == NULL)
952 if (isc_safe_memcmp(hkey1->key, hkey2->key, ISC_SHA256_DIGESTLENGTH))
1211 dst_hmacsha384_key_t *hkey1, *hkey2;
1213 hkey1 = key1->keydata.hmacsha384;
1216 if (hkey1 == NULL && hkey2 == NULL)
1218 else if (hkey1 == NULL || hkey2 == NULL)
1221 if (isc_safe_memcmp(hkey1->key, hkey2->key, ISC_SHA384_DIGESTLENGTH))
1480 dst_hmacsha512_key_t *hkey1, *hkey2;
1482 hkey1 = key1->keydata.hmacsha512;
1485 if (hkey1 == NULL && hkey2 == NULL)
1487 else if (hkey1 == NULL || hkey2 == NULL)
1490 if (isc_safe_memcmp(hkey1->key, hkey2->key, ISC_SHA512_DIGESTLENGTH))