HomeSort by relevance Sort by last modified time
    Searched refs:aad_vec (Results 1 - 3 of 3) sorted by null

  /external/grpc-grpc/src/core/tsi/alts/crypt/
gsec.cc 46 struct iovec aad_vec = {(void*)aad, aad_length}; local
51 crypter, nonce, nonce_length, &aad_vec, 1, &plaintext_vec, 1,
61 const struct iovec* aad_vec, size_t aad_vec_length,
68 crypter, nonce, nonce_length, aad_vec, aad_vec_length, plaintext_vec,
84 struct iovec aad_vec = {(void*)aad, aad_length}; local
89 crypter, nonce, nonce_length, &aad_vec, 1, &ciphertext_vec, 1,
99 const struct iovec* aad_vec, size_t aad_vec_length,
106 crypter, nonce, nonce_length, aad_vec, aad_vec_length, ciphertext_vec,
gsec.h 144 const struct iovec* aad_vec, size_t aad_vec_length,
150 const struct iovec* aad_vec, size_t aad_vec_length,
224 * - aad_vec: an iovec array containing data that needs to be authenticated but
226 * - aad_vec_length: the array length of aad_vec.
245 const struct iovec* aad_vec, size_t aad_vec_length,
294 * - aad_vec: an iovec array containing data that needs to be authenticated but
296 * - aad_vec_length: the array length of aad_vec.
313 const struct iovec* aad_vec, size_t aad_vec_length,
aes_gcm.cc 248 const struct iovec* aad_vec, size_t aad_vec_length,
263 if (aad_vec_length > 0 && aad_vec == nullptr) {
264 aes_gcm_format_errors("Non-zero aad_vec_length but aad_vec is nullptr.",
301 const uint8_t* aad = static_cast<uint8_t*>(aad_vec[i].iov_base);
302 size_t aad_length = aad_vec[i].iov_len;
386 const struct iovec* aad_vec, size_t aad_vec_length,
401 if (aad_vec_length > 0 && aad_vec == nullptr) {
402 aes_gcm_format_errors("Non-zero aad_vec_length but aad_vec is nullptr.",
451 const uint8_t* aad = static_cast<uint8_t*>(aad_vec[i].iov_base);
452 size_t aad_length = aad_vec[i].iov_len
    [all...]

Completed in 6666 milliseconds