/external/cronet/third_party/boringssl/src/ssl/test/runner/ |
D | common.go | 322 Get(sessionKey string) (session *ClientSessionState, ok bool) 325 Put(sessionKey string, cs *ClientSessionState) 2189 sessionKey string member 2194 func (c *lruSessionCache) Put(sessionKey string, cs interface{}) { 2198 if elem, ok := c.m[sessionKey]; ok { 2206 entry := &lruSessionCacheEntry{sessionKey, cs} 2207 c.m[sessionKey] = c.q.PushFront(entry) 2213 delete(c.m, entry.sessionKey) 2214 entry.sessionKey = sessionKey 2217 c.m[sessionKey] = elem [all …]
|
/external/boringssl/src/ssl/test/runner/ |
D | common.go | 326 Get(sessionKey string) (session *ClientSessionState, ok bool) 329 Put(sessionKey string, cs *ClientSessionState) 2193 sessionKey string member 2198 func (c *lruSessionCache) Put(sessionKey string, cs interface{}) { 2202 if elem, ok := c.m[sessionKey]; ok { 2210 entry := &lruSessionCacheEntry{sessionKey, cs} 2211 c.m[sessionKey] = c.q.PushFront(entry) 2217 delete(c.m, entry.sessionKey) 2218 entry.sessionKey = sessionKey 2221 c.m[sessionKey] = elem [all …]
|
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowVpnManager.java | 53 String sessionKey = UUID.randomUUID().toString(); in startProvisionedVpnProfileSession() local 56 new VpnProfileState(VpnProfileState.STATE_CONNECTED, sessionKey, false, false); in startProvisionedVpnProfileSession() 58 return sessionKey; in startProvisionedVpnProfileSession()
|
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowVpnManagerTest.java | 81 String sessionKey = vpnManager.startProvisionedVpnProfileSession(); in startAndStopVpnProfile_tiramisu() local 84 assertThat(state.getSessionId()).isEqualTo(sessionKey); in startAndStopVpnProfile_tiramisu()
|
/external/tpm2-tss/test/integration/ |
D | sapi-session-util.c | 71 session->sessionKey.size = 0; in start_auth_session() 95 bytes, (TPM2B_MAX_BUFFER *)&session->sessionKey); in start_auth_session() 196 CopySizedByteBuffer((TPM2B *)&hmac_key, (TPM2B *)&session->sessionKey); in compute_command_hmac() 248 CopySizedByteBuffer((TPM2B *)&hmac_key, (TPM2B *)&session->sessionKey); in check_response_hmac() 566 CopySizedByteBuffer((TPM2B *)&sessionValue, (TPM2B *)&session->sessionKey); in gen_session_key() 648 CopySizedByteBuffer((TPM2B *)&key, (TPM2B *)&session->sessionKey); in encrypt_decrypt_xor()
|
D | session-util.h | 26 TPM2B_DIGEST sessionKey; member
|
/external/tpm2-tss/src/tss2-esys/ |
D | esys_types.h | 57 …TPM2B_DIGEST sessionKey; /**< sessionKey used for KDFa to compute s… member
|
D | esys_iutil.c | 786 LOGBLOB_DEBUG(&rsrc_session->sessionKey.buffer[0], in iesys_decrypt_param() 787 rsrc_session->sessionKey.size, in iesys_decrypt_param() 982 = session->rsrc.misc.rsrc_session.sessionKey.size; in iesys_compute_session_value() 984 &session->rsrc.misc.rsrc_session.sessionKey.buffer[0], in iesys_compute_session_value() 985 session->rsrc.misc.rsrc_session.sessionKey.size); in iesys_compute_session_value() 999 sessionValue[session->rsrc.misc.rsrc_session.sessionKey.size], in iesys_compute_session_value()
|
D | esys_mu.c | 423 ret = Tss2_MU_TPM2B_DIGEST_Marshal(&src->sessionKey, buffer, size, &offset_loc); in iesys_MU_IESYS_SESSION_Marshal() 512 (dst == NULL)? NULL : &dst->sessionKey); in iesys_MU_IESYS_SESSION_Unmarshal()
|
/external/tpm2-tss/src/tss2-esys/api/ |
D | Esys_StartAuthSession.c | 479 &sessionHandleNode->rsrc.misc.rsrc_session.sessionKey.buffer[0], FALSE); in Esys_StartAuthSession_Finish() 483 sessionHandleNode->rsrc.misc.rsrc_session.sessionKey.size = authHash_size; in Esys_StartAuthSession_Finish() 484 LOGBLOB_DEBUG(&sessionHandleNode->rsrc.misc.rsrc_session.sessionKey in Esys_StartAuthSession_Finish()
|
/external/ms-tpm-20-ref/TPMCmd/tpm/src/subsystem/ |
D | Session.c | 547 session->sessionKey.t.size = CryptHashGetDigestSize(session->authHashAlg); in SessionCreate() 559 session->sessionKey.t.size * 8, session->sessionKey.t.buffer, in SessionCreate()
|
/external/ms-tpm-20-ref/TPMCmd/tpm/src/crypt/ |
D | CryptUtil.c | 840 + sizeof(session->sessionKey.t.buffer))); in CryptParameterEncryption() 868 MemoryCopy2B(&key.b, &session->sessionKey.b, sizeof(key.t.buffer)); in CryptParameterEncryption() 907 + sizeof(session->sessionKey.t.buffer))); in CryptParameterDecryption() 935 MemoryCopy2B(&key.b, &session->sessionKey.b, sizeof(key.t.buffer)); in CryptParameterDecryption()
|
/external/ms-tpm-20-ref/TPMCmd/tpm/include/ |
D | Global.h | 346 TPM2B_AUTH sessionKey; // session secret value used for member
|
/external/ms-tpm-20-ref/TPMCmd/tpm/src/main/ |
D | SessionProcess.c | 864 MemoryCopy2B(&key.b, &session->sessionKey.b, sizeof(key.t.buffer)); in ComputeCommandHMAC() 1977 MemoryCopy2B(&key.b, &session->sessionKey.b, sizeof(key.t.buffer)); in ComputeResponseHMAC()
|