Searched refs:encryptedData (Results 1 – 3 of 3) sorted by relevance
110 uint8_t* encryptedData, in hwaesDecryptAesGcmInPlace() argument126 unsigned char* tag = encryptedData + ciphertextSize; in hwaesDecryptAesGcmInPlace()137 cryptArgs.text_in.data_ptr = encryptedData; in hwaesDecryptAesGcmInPlace()139 cryptArgs.text_out.data_ptr = encryptedData; in hwaesDecryptAesGcmInPlace()
708 std::vector<uint8_t> encryptedData; in encryptAesGcm() local709 encryptedData.resize(data.size() + kAesGcmTagSize); in encryptAesGcm()710 unsigned char* ciphertext = (unsigned char*)encryptedData.data(); in encryptAesGcm()808 return encryptedData; in encryptAesGcm()940 uint8_t* encryptedData, in decryptAesGcmInPlace() argument961 unsigned char* ciphertext = encryptedData; in decryptAesGcmInPlace()968 unsigned char* plaintext = encryptedData; in decryptAesGcmInPlace()
75 uint8_t* encryptedData,