Home
last modified time | relevance | path

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

/netbsd-src/crypto/external/bsd/heimdal/dist/lib/ntlm/
H A Dntlm.c1362 struct ntlm_buf *encryptedSession) in heim_ntlm_keyex_wrap() argument
1376 encryptedSession->length = MD4_DIGEST_LENGTH; in heim_ntlm_keyex_wrap()
1377 encryptedSession->data = malloc(encryptedSession->length); in heim_ntlm_keyex_wrap()
1378 if (encryptedSession->data == NULL) { in heim_ntlm_keyex_wrap()
1380 encryptedSession->length = 0; in heim_ntlm_keyex_wrap()
1400 heim_ntlm_free_buf(encryptedSession); in heim_ntlm_keyex_wrap()
1405 EVP_Cipher(c, encryptedSession->data, session->data, encryptedSession->length); in heim_ntlm_keyex_wrap()
1500 struct ntlm_buf *encryptedSession, in heim_ntlm_keyex_unwrap() argument
1507 if (encryptedSession->length != MD4_DIGEST_LENGTH) in heim_ntlm_keyex_unwrap()
1536 EVP_Cipher(c, session->data, encryptedSession->data, session->length); in heim_ntlm_keyex_unwrap()