Searched refs:ciphertext_vec (Results 1 – 3 of 3) sorted by relevance
/third_party/grpc/src/core/tsi/alts/crypt/ |
D | gsec.cc | 49 struct iovec ciphertext_vec = {ciphertext_and_tag, in gsec_aead_crypter_encrypt() local 53 ciphertext_vec, bytes_written, error_details); in gsec_aead_crypter_encrypt() 64 struct iovec ciphertext_vec, size_t* ciphertext_bytes_written, in gsec_aead_crypter_encrypt_iovec() argument 70 plaintext_vec_length, ciphertext_vec, ciphertext_bytes_written, in gsec_aead_crypter_encrypt_iovec() 86 struct iovec ciphertext_vec = {const_cast<uint8_t*>(ciphertext_and_tag), in gsec_aead_crypter_decrypt() local 90 crypter, nonce, nonce_length, &aad_vec, 1, &ciphertext_vec, 1, in gsec_aead_crypter_decrypt() 101 const struct iovec* ciphertext_vec, size_t ciphertext_vec_length, in gsec_aead_crypter_decrypt_iovec() argument 107 crypter, nonce, nonce_length, aad_vec, aad_vec_length, ciphertext_vec, in gsec_aead_crypter_decrypt_iovec()
|
D | aes_gcm.cc | 248 struct iovec ciphertext_vec, size_t* ciphertext_bytes_written, in gsec_aes_gcm_aead_crypter_encrypt_iovec() argument 318 uint8_t* ciphertext = static_cast<uint8_t*>(ciphertext_vec.iov_base); in gsec_aes_gcm_aead_crypter_encrypt_iovec() 319 size_t ciphertext_length = ciphertext_vec.iov_len; in gsec_aes_gcm_aead_crypter_encrypt_iovec() 378 *ciphertext_bytes_written = ciphertext_vec.iov_len - ciphertext_length; in gsec_aes_gcm_aead_crypter_encrypt_iovec() 385 const struct iovec* ciphertext_vec, size_t ciphertext_vec_length, in gsec_aes_gcm_aead_crypter_decrypt_iovec() argument 404 if (ciphertext_vec_length > 0 && ciphertext_vec == nullptr) { in gsec_aes_gcm_aead_crypter_decrypt_iovec() 415 total_ciphertext_length += ciphertext_vec[i].iov_len; in gsec_aes_gcm_aead_crypter_decrypt_iovec() 482 ciphertext = static_cast<uint8_t*>(ciphertext_vec[i].iov_base); in gsec_aes_gcm_aead_crypter_decrypt_iovec() 483 ciphertext_length = ciphertext_vec[i].iov_len; in gsec_aes_gcm_aead_crypter_decrypt_iovec() 537 ciphertext = static_cast<uint8_t*>(ciphertext_vec[i].iov_base); in gsec_aes_gcm_aead_crypter_decrypt_iovec() [all …]
|
D | gsec.h | 148 struct iovec ciphertext_vec, size_t* ciphertext_bytes_written, 153 const struct iovec* ciphertext_vec, size_t ciphertext_vec_length, 249 struct iovec ciphertext_vec, size_t* ciphertext_bytes_written, 316 const struct iovec* ciphertext_vec, size_t ciphertext_vec_length,
|