Home
last modified time | relevance | path

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

/hardware/interfaces/identity/support/src/
DIdentityCredentialSupport.cpp369 int cipherTextSize = int(encryptedData.size()) - kAesGcmIvSize - kAesGcmTagSize; in decryptAes128Gcm() local
370 if (cipherTextSize < 0) { in decryptAes128Gcm()
376 unsigned char* tag = cipherText + cipherTextSize; in decryptAes128Gcm()
379 plainText.resize(cipherTextSize); in decryptAes128Gcm()
418 cipherTextSize) != 1) { in decryptAes128Gcm()
422 if (numWritten != cipherTextSize) { in decryptAes128Gcm()
424 << cipherTextSize << ")"; in decryptAes128Gcm()