Searched refs:cipherBytes (Results 1 – 1 of 1) sorted by relevance
229 std::string cipherBytes = Hex2Byte(cipherText); in DecryptAesGcm() local230 iv.assign(cipherBytes.begin(), cipherBytes.begin() + G_AES_GCM_IV_LEN); in DecryptAesGcm()231 … cipherByte.assign(cipherBytes.begin() + G_AES_GCM_IV_LEN, cipherBytes.end() - G_AES_GCM_TAG_LEN); in DecryptAesGcm()232 tag.assign(cipherBytes.end() - G_AES_GCM_TAG_LEN, cipherBytes.end()); in DecryptAesGcm()