| 9640 | } |
| 9641 | |
| 9642 | int |
| 9643 | test_pdcp_proto_uplane_decap(int i) |
| 9644 | { |
| 9645 | return test_pdcp_proto( |
| 9646 | i, 0, RTE_CRYPTO_CIPHER_OP_DECRYPT, RTE_CRYPTO_AUTH_OP_VERIFY, |
| 9647 | pdcp_test_data_out[i], pdcp_test_data_in_len[i], |
| 9648 | pdcp_test_data_in[i], pdcp_test_data_in_len[i], |
| 9649 | pdcp_test_params[i].cipher_alg, pdcp_test_crypto_key[i], |
| 9650 | pdcp_test_params[i].cipher_key_len, |
| 9651 | pdcp_test_params[i].auth_alg, pdcp_test_auth_key[i], |
| 9652 | pdcp_test_params[i].auth_key_len, pdcp_test_bearer[i], |
| 9653 | pdcp_test_params[i].domain, pdcp_test_packet_direction[i], |
| 9654 | pdcp_test_data_sn_size[i], pdcp_test_hfn[i], |
| 9655 | pdcp_test_hfn_threshold[i], SDAP_DISABLED); |
| 9656 | } |
| 9657 | |
| 9658 | int |
| 9659 | test_pdcp_proto_uplane_decap_with_int(int i) |
no test coverage detected