Home
last modified time | relevance | path

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

/trusty/user/base/lib/apploader_package/
Dpackage.cpp110 uint8_t* encryptedData, in hwaesDecryptAesGcmInPlace() argument
126 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()
Dcose.cpp708 std::vector<uint8_t> encryptedData; in encryptAesGcm() local
709 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() argument
961 unsigned char* ciphertext = encryptedData; in decryptAesGcmInPlace()
968 unsigned char* plaintext = encryptedData; in decryptAesGcmInPlace()
/trusty/user/base/lib/apploader_package/include/apploader/
Dcose.h75 uint8_t* encryptedData,