Home
last modified time | relevance | path

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

/external/tpm2/
DStartAuthSession.c44 if( in->nonceCaller.t.size < 16 in TPM2_StartAuthSession()
45 || in->nonceCaller.t.size > CryptGetHashDigestSize(in->authHash)) in TPM2_StartAuthSession()
70 result = CryptSecretDecrypt(in->tpmKey, &in->nonceCaller, "SECRET", in TPM2_StartAuthSession()
105 &in->nonceCaller, &in->symmetric, in TPM2_StartAuthSession()
DCryptUtil_fp.h248 TPM2B *nonceCaller, // IN: nonce caller
257 TPM2B *nonceCaller, // IN: nonce caller
265 TPM2B_NONCE *nonceCaller, // IN: nonceCaller. It is needed for symmetric
DCryptUtil.c1791 TPM2B *nonceCaller, // IN: nonce caller in ParmDecryptSym() argument
1809 CryptKDFa(hash, key, "CFB", nonceCaller, nonceTpm, in ParmDecryptSym()
1830 TPM2B *nonceCaller, // IN: nonce caller in ParmEncryptSym() argument
1847 CryptKDFa(hash, key, "CFB", nonceTpm, nonceCaller, in ParmEncryptSym()
2515 TPM2B_NONCE *nonceCaller, // IN: nonceCaller. It is needed for in CryptSecretDecrypt() argument
2613 &nonceCaller->b, NULL, in CryptSecretDecrypt()
2633 if(nonceCaller->t.size >= iv.t.size) in CryptSecretDecrypt()
2634 MemoryCopy(iv.t.buffer, nonceCaller->t.buffer, iv.t.size, in CryptSecretDecrypt()
2637 MemoryCopy(iv.b.buffer, nonceCaller->t.buffer, in CryptSecretDecrypt()
2638 nonceCaller->t.size, sizeof(iv.t.buffer)); in CryptSecretDecrypt()
[all …]
DStartAuthSession_fp.h15 TPM2B_NONCE nonceCaller; member
DSession_fp.h35 TPM2B_NONCE *nonceCaller, // IN: initial nonceCaller
DSession.c307 TPM2B_NONCE *nonceCaller, // IN: initial nonceCaller in SessionCreate() argument
364 session->nonceTPM.t.size = nonceCaller->t.size; in SessionCreate()
393 &nonceCaller->b, hashSize * 8, session->sessionKey.t.buffer, NULL); in SessionCreate()
DMarshal_StartAuthSession.c49 result = TPM2B_NONCE_Unmarshal(&target->nonceCaller, buffer, size); in StartAuthSession_In_Unmarshal()