Lines Matching defs:hkey1
130 dst_hmacmd5_key_t *hkey1, *hkey2;
132 hkey1 = key1->keydata.hmacmd5;
135 if (hkey1 == NULL && hkey2 == NULL)
137 else if (hkey1 == NULL || hkey2 == NULL)
140 if (isc_safe_memequal(hkey1->key, hkey2->key, ISC_MD5_BLOCK_LENGTH))
438 dst_hmacsha1_key_t *hkey1, *hkey2;
440 hkey1 = key1->keydata.hmacsha1;
443 if (hkey1 == NULL && hkey2 == NULL)
445 else if (hkey1 == NULL || hkey2 == NULL)
448 if (isc_safe_memequal(hkey1->key, hkey2->key, ISC_SHA1_BLOCK_LENGTH))
729 dst_hmacsha224_key_t *hkey1, *hkey2;
731 hkey1 = key1->keydata.hmacsha224;
734 if (hkey1 == NULL && hkey2 == NULL)
736 else if (hkey1 == NULL || hkey2 == NULL)
739 if (isc_safe_memequal(hkey1->key, hkey2->key, ISC_SHA224_BLOCK_LENGTH))
1016 dst_hmacsha256_key_t *hkey1, *hkey2;
1018 hkey1 = key1->keydata.hmacsha256;
1021 if (hkey1 == NULL && hkey2 == NULL)
1023 else if (hkey1 == NULL || hkey2 == NULL)
1026 if (isc_safe_memequal(hkey1->key, hkey2->key, ISC_SHA256_BLOCK_LENGTH))
1303 dst_hmacsha384_key_t *hkey1, *hkey2;
1305 hkey1 = key1->keydata.hmacsha384;
1308 if (hkey1 == NULL && hkey2 == NULL)
1310 else if (hkey1 == NULL || hkey2 == NULL)
1313 if (isc_safe_memequal(hkey1->key, hkey2->key, ISC_SHA384_BLOCK_LENGTH))
1590 dst_hmacsha512_key_t *hkey1, *hkey2;
1592 hkey1 = key1->keydata.hmacsha512;
1595 if (hkey1 == NULL && hkey2 == NULL)
1597 else if (hkey1 == NULL || hkey2 == NULL)
1600 if (isc_safe_memequal(hkey1->key, hkey2->key, ISC_SHA512_BLOCK_LENGTH))