Home
last modified time | relevance | path

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

/external/curl/tests/python_dependencies/impacket/
Dntlm.py32 def computeResponse(flags, serverChallenge, clientChallenge, serverName, domain, user, password, lm… argument
35 …return computeResponseNTLMv2(flags, serverChallenge, clientChallenge, serverName, domain, user, pa…
38 …return computeResponseNTLMv1(flags, serverChallenge, clientChallenge, serverName, domain, user, pa…
696 def computeResponseNTLMv1(flags, serverChallenge, clientChallenge, serverName, domain, user, passwo… argument
706 lmResponse = get_ntlmv1_response(lmhash, serverChallenge)
709 chall = (serverChallenge + clientChallenge)
714 ntResponse = get_ntlmv1_response(nthash,serverChallenge)
715 lmResponse = get_ntlmv1_response(lmhash, serverChallenge)
846 def KXKEY(flags, sessionBaseKey, lmChallengeResponse, serverChallenge, password, lmhash, nthash, us… argument
852 keyExchangeKey = hmac_md5(sessionBaseKey, serverChallenge + lmChallengeResponse[:8])
[all …]