| 9624 | } |
| 9625 | |
| 9626 | int |
| 9627 | test_pdcp_proto_cplane_decap(int i) |
| 9628 | { |
| 9629 | return test_pdcp_proto( |
| 9630 | i, 0, RTE_CRYPTO_CIPHER_OP_DECRYPT, RTE_CRYPTO_AUTH_OP_VERIFY, |
| 9631 | pdcp_test_data_out[i], pdcp_test_data_in_len[i] + 4, |
| 9632 | pdcp_test_data_in[i], pdcp_test_data_in_len[i], |
| 9633 | pdcp_test_params[i].cipher_alg, pdcp_test_crypto_key[i], |
| 9634 | pdcp_test_params[i].cipher_key_len, |
| 9635 | pdcp_test_params[i].auth_alg, pdcp_test_auth_key[i], |
| 9636 | pdcp_test_params[i].auth_key_len, pdcp_test_bearer[i], |
| 9637 | pdcp_test_params[i].domain, pdcp_test_packet_direction[i], |
| 9638 | pdcp_test_data_sn_size[i], pdcp_test_hfn[i], |
| 9639 | pdcp_test_hfn_threshold[i], SDAP_DISABLED); |
| 9640 | } |
| 9641 | |
| 9642 | int |
| 9643 | test_pdcp_proto_uplane_decap(int i) |
no test coverage detected