Searched refs:exportedSessionKey (Results 1 – 3 of 3) sorted by relevance
/external/curl/tests/python_dependencies/impacket/ |
D | ntlm.py | 650 … exportedSessionKey = "".join([random.choice(string.digits+string.letters) for i in xrange(16)]) 670 encryptedRandomSessionKey = generateEncryptedSessionKey(keyExchangeKey, exportedSessionKey) 674 exportedSessionKey = keyExchangeKey 683 return ntlmChallengeResponse, exportedSessionKey 834 def generateEncryptedSessionKey(keyExchangeKey, exportedSessionKey): argument 843 sessionKey = cipher_encrypt(exportedSessionKey)
|
D | smb3.py | 739 …type3, exportedSessionKey = ntlm.getNTLMSSPType3(auth, respToken['ResponseToken'], user, password,… 741 if exportedSessionKey is not None: 742 self._Session['SessionKey'] = exportedSessionKey 744 …self._Session['SigningKey'] = crypto.KDF_CounterMode(exportedSessionKey, "SMB2AESCMAC\x00", "SmbS… 764 …self._Session['ApplicationKey'] = crypto.KDF_CounterMode(exportedSessionKey, "SMB2APP\x00", "SmbR… 765 …self._Session['EncryptionKey'] = crypto.KDF_CounterMode(exportedSessionKey, "SMB2AESCCM\x00", "S… 766 …self._Session['DecryptionKey'] = crypto.KDF_CounterMode(exportedSessionKey, "SMB2AESCCM\x00", "S…
|
D | smb.py | 3250 …type3, exportedSessionKey = ntlm.getNTLMSSPType3(auth, respToken['ResponseToken'], user, password,… 3252 if exportedSessionKey is not None: 3253 self._SigningSessionKey = exportedSessionKey
|