• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/Heimdal-398.1.2/lib/ntlm/

Lines Matching refs:answer

1177 	    unsigned char *answer)
1194 EVP_Cipher(&ctx, answer, challenge, 8);
1250 * @param answer calculated answer, should be freed with heim_ntlm_free_buf().
1261 struct ntlm_buf *answer)
1271 answer->data = malloc(24);
1272 if (answer->data == NULL)
1274 answer->length = 24;
1276 splitandenc(&res[0], challenge, ((unsigned char *)answer->data) + 0);
1277 splitandenc(&res[7], challenge, ((unsigned char *)answer->data) + 8);
1278 splitandenc(&res[14], challenge, ((unsigned char *)answer->data) + 16);
1574 * @param answer ntlm response answer, should be freed with heim_ntlm_free_buf().
1588 struct ntlm_buf *answer)
1599 answer->data = malloc(24);
1600 if (answer->data == NULL)
1602 answer->length = 24;
1605 serverchallenge, answer->data);
1607 memcpy((uint8_t *)answer->data + 16, clientchallenge, 8);
1623 * @param answer ntlm response answer, should be freed with heim_ntlm_free_buf().
1638 struct ntlm_buf *answer)
1656 /* calculate and build ntlmv2 answer */
1703 answer->data = data.data;
1704 answer->length = data.length;
1722 const struct ntlm_buf *answer,
1738 if (answer->length < 16)
1748 /* calculate and build ntlmv2 answer */
1750 sp = krb5_storage_from_readonly_mem(answer->data, answer->length);
1780 infotarget->length = answer->length - (size_t)krb5_storage_seek(sp, 0, SEEK_CUR);
1796 if (answer->length < 16) {
1802 ((unsigned char *)answer->data) + 16, answer->length - 16,
1828 * @param answer ntlm response answer, should be freed with heim_ntlm_free_buf().
1844 const struct ntlm_buf *answer,
1855 serverchallenge, answer, infotarget, ntlmv2);
1863 serverchallenge, answer, infotarget, ntlmv2);
1870 serverchallenge, answer, infotarget, ntlmv2);