Searched refs:cryptArgs (Results 1 – 1 of 1) sorted by relevance
128 struct hwcrypt_args cryptArgs = {}; in hwaesDecryptAesGcmInPlace() local129 cryptArgs.key.data_ptr = key.data(); in hwaesDecryptAesGcmInPlace()130 cryptArgs.key.len = key.size(); in hwaesDecryptAesGcmInPlace()131 cryptArgs.iv.data_ptr = nonce.data(); in hwaesDecryptAesGcmInPlace()132 cryptArgs.iv.len = nonce.size(); in hwaesDecryptAesGcmInPlace()133 cryptArgs.aad.data_ptr = additionalAuthenticatedData.data(); in hwaesDecryptAesGcmInPlace()134 cryptArgs.aad.len = additionalAuthenticatedData.size(); in hwaesDecryptAesGcmInPlace()135 cryptArgs.tag_in.data_ptr = tag; in hwaesDecryptAesGcmInPlace()136 cryptArgs.tag_in.len = kAesGcmTagSize; in hwaesDecryptAesGcmInPlace()137 cryptArgs.text_in.data_ptr = encryptedData; in hwaesDecryptAesGcmInPlace()[all …]