Home
last modified time | relevance | path

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

/external/grpc-grpc/src/core/tsi/alts/crypt/
Daes_gcm.cc414 size_t total_ciphertext_length = 0; in gsec_aes_gcm_aead_crypter_decrypt_iovec() local
417 total_ciphertext_length += ciphertext_vec[i].iov_len; in gsec_aes_gcm_aead_crypter_decrypt_iovec()
419 if (total_ciphertext_length < kAesGcmTagLength) { in gsec_aes_gcm_aead_crypter_decrypt_iovec()
482 i < ciphertext_vec_length && total_ciphertext_length > kAesGcmTagLength; in gsec_aes_gcm_aead_crypter_decrypt_iovec()
497 if (bytes_to_write > total_ciphertext_length - kAesGcmTagLength) { in gsec_aes_gcm_aead_crypter_decrypt_iovec()
498 bytes_to_write = total_ciphertext_length - kAesGcmTagLength; in gsec_aes_gcm_aead_crypter_decrypt_iovec()
520 total_ciphertext_length -= bytes_written; in gsec_aes_gcm_aead_crypter_decrypt_iovec()
524 if (total_ciphertext_length > kAesGcmTagLength) { in gsec_aes_gcm_aead_crypter_decrypt_iovec()
536 total_ciphertext_length -= ciphertext_length; in gsec_aes_gcm_aead_crypter_decrypt_iovec()
551 total_ciphertext_length -= ciphertext_length; in gsec_aes_gcm_aead_crypter_decrypt_iovec()