Home
last modified time | relevance | path

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

/external/boringssl/src/ssl/test/runner/
Dcommon.go304 Get(sessionKey string) (session *ClientSessionState, ok bool)
307 Put(sessionKey string, cs *ClientSessionState)
1903 sessionKey string member
1908 func (c *lruSessionCache) Put(sessionKey string, cs interface{}) {
1912 if elem, ok := c.m[sessionKey]; ok {
1920 entry := &lruSessionCacheEntry{sessionKey, cs}
1921 c.m[sessionKey] = c.q.PushFront(entry)
1927 delete(c.m, entry.sessionKey)
1928 entry.sessionKey = sessionKey
1931 c.m[sessionKey] = elem
[all …]
/external/curl/tests/python_dependencies/impacket/
Dsmb3.py526 …tgt, cipher, oldSessionKey, sessionKey = getKerberosTGT(userName, password, domain, lmhash, nthash…
530 sessionKey = TGT['sessionKey']
550 …tgs, cipher, oldSessionKey, sessionKey = getKerberosTGS(serverName, domain, kdcHost, tgt, cipher,
554 sessionKey = TGS['sessionKey']
592 encryptedEncodedAuthenticator = cipher.encrypt(sessionKey, 11, encodedAuthenticator, None)
615 self._Session['SessionKey'] = sessionKey.contents[:16]
Dsmb.py3043 …tgt, cipher, oldSessionKey, sessionKey = getKerberosTGT(userName, password, domain, lmhash, nthash…
3047 sessionKey = TGT['sessionKey']
3053 …tgs, cipher, oldSessionKey, sessionKey = getKerberosTGS(serverName, domain, kdcHost, tgt, cipher,
3057 sessionKey = TGS['sessionKey']
3114 encryptedEncodedAuthenticator = cipher.encrypt(sessionKey, 11, encodedAuthenticator, None)
3148 self._SigningSessionKey = sessionKey.contents
Dntlm.py843 sessionKey = cipher_encrypt(exportedSessionKey)
844 return sessionKey