Searched refs:protected_data_size (Results 1 – 1 of 1) sorted by relevance
/external/grpc-grpc/test/core/tsi/alts/frame_protector/ |
D | alts_crypter_test.cc | 35 size_t protected_data_size = data_size + num_overhead_bytes; in alts_crypter_test_random_seal_unseal() local 36 uint8_t* data_buffer = static_cast<uint8_t*>(gpr_malloc(protected_data_size)); in alts_crypter_test_random_seal_unseal() 44 client_seal, data_buffer, protected_data_size, size, &size, nullptr); in alts_crypter_test_random_seal_unseal() 46 GPR_ASSERT(size == protected_data_size); in alts_crypter_test_random_seal_unseal() 48 server_unseal, data_buffer, protected_data_size, size, &size, nullptr); in alts_crypter_test_random_seal_unseal() 54 server_seal, data_buffer, protected_data_size, size, &size, nullptr); in alts_crypter_test_random_seal_unseal() 56 GPR_ASSERT(size == protected_data_size); in alts_crypter_test_random_seal_unseal() 58 client_unseal, data_buffer, protected_data_size, size, &size, nullptr); in alts_crypter_test_random_seal_unseal() 71 size_t protected_data_size = data_size + num_overhead_bytes; in alts_crypter_test_multiple_random_seal_unseal() local 74 static_cast<uint8_t*>(gpr_malloc(protected_data_size)); in alts_crypter_test_multiple_random_seal_unseal() [all …]
|