Home
last modified time | relevance | path

Searched refs:my_hash (Results 1 – 4 of 4) sorted by relevance

/external/ipsec-tools/src/racoon/
Disakmp_newg.c148 vchar_t *my_hash = NULL;
166 my_hash = isakmp_prf(iph1->skeyid_a, buf, iph1);
168 if (my_hash == NULL)
172 plogdump(LLV_DEBUG, my_hash->v, my_hash->l);
179 result = memcmp(my_hash->v, r_hash, my_hash->l);
180 vfree(my_hash);
Disakmp_quick.c494 vchar_t *my_hash = NULL; local
502 my_hash = oakley_compute_hash1(iph2->ph1, iph2->msgid, hbuf);
503 if (my_hash == NULL)
506 result = memcmp(my_hash->v, r_hash, my_hash->l);
507 vfree(my_hash);
767 vchar_t *my_hash = NULL; local
776 my_hash = oakley_compute_hash1(iph2->ph1, iph2->msgid, notify);
778 if (my_hash == NULL)
781 result = memcmp(my_hash->v, r_hash, my_hash->l);
782 vfree(my_hash);
[all …]
Doakley.c1242 vchar_t *my_hash = NULL; local
1290 my_hash = oakley_ph1hash_common(iph1, VALIDATE);
1294 my_hash = oakley_ph1hash_common(iph1, VALIDATE);
1296 my_hash = oakley_ph1hash_base_i(iph1, VALIDATE);
1303 if (my_hash == NULL)
1306 result = memcmp(my_hash->v, r_hash, my_hash->l);
1307 vfree(my_hash);
1479 my_hash = oakley_ph1hash_common(iph1, VALIDATE);
1483 my_hash = oakley_ph1hash_base_r(iph1, VALIDATE);
1485 my_hash = oakley_ph1hash_base_i(iph1, VALIDATE);
[all …]
/external/chromium_org/crypto/
Dp224_spake.cc206 const uint8* my_hash = is_server_ ? server_hash : client_hash; in ProcessMessage() local
210 std::string(reinterpret_cast<const char*>(my_hash), kSHA256Length); in ProcessMessage()