Searched refs:aead_iv (Results 1 – 10 of 10) sorted by relevance
| /f-stack/dpdk/app/test-crypto-perf/ |
| H A D | cperf_test_vector_parsing.c | 131 if (test_vector->aead_iv.data) { in show_test_vector() 133 for (i = 0; i < test_vector->aead_iv.length; ++i) { in show_test_vector() 136 if (i == (uint32_t)(test_vector->aead_iv.length - 1)) in show_test_vector() 137 printf("0x%02x", test_vector->aead_iv.data[i]); in show_test_vector() 139 printf("0x%02x, ", test_vector->aead_iv.data[i]); in show_test_vector() 390 rte_free(vector->aead_iv.data); in parse_entry() 391 vector->aead_iv.data = data; in parse_entry() 393 vector->aead_iv.length = data_length; in parse_entry() 400 vector->aead_iv.length = opts->aead_iv_sz; in parse_entry()
|
| H A D | cperf_test_vectors.c | 580 t_vec->aead_iv.data = rte_malloc(NULL, options->aead_iv_sz, in cperf_test_vector_get_dummy() 582 if (options->aead_iv_sz && t_vec->aead_iv.data == NULL) { in cperf_test_vector_get_dummy() 588 memcpy(t_vec->aead_iv.data, iv, options->aead_iv_sz); in cperf_test_vector_get_dummy() 589 t_vec->aead_iv.length = options->aead_iv_sz; in cperf_test_vector_get_dummy()
|
| H A D | cperf_test_vectors.h | 44 } aead_iv; member
|
| H A D | cperf_test_common.c | 153 RTE_ALIGN_CEIL(test_vector->aead_iv.length, 16) + in cperf_alloc_common_memory() 159 test_vector->aead_iv.length + in cperf_alloc_common_memory()
|
| H A D | cperf_ops.c | 441 RTE_ALIGN_CEIL(test_vector->aead_iv.length, 16); in cperf_set_ops_aead() 521 memcpy(iv_ptr + 1, test_vector->aead_iv.data, in cperf_set_ops_aead() 522 test_vector->aead_iv.length); in cperf_set_ops_aead() 528 memcpy(iv_ptr, test_vector->aead_iv.data, in cperf_set_ops_aead() 529 test_vector->aead_iv.length); in cperf_set_ops_aead() 801 aead_xform.aead.iv.length = test_vector->aead_iv.length; in cperf_create_session()
|
| H A D | main.c | 489 if (test_vec->aead_iv.data == NULL) in cperf_check_test_vector() 491 if (test_vec->aead_iv.length != opts->aead_iv_sz) in cperf_check_test_vector()
|
| /f-stack/dpdk/examples/l2fwd-crypto/ |
| H A D | main.c | 159 struct l2fwd_iv aead_iv; member 187 struct l2fwd_iv aead_iv; member 520 cparams->aead_iv.length); in l2fwd_simple_crypto_enqueue() 523 cparams->aead_iv.length); in l2fwd_simple_crypto_enqueue() 771 port_cparams[i].aead_iv.data = options->aead_iv.data; in l2fwd_main_loop() 772 port_cparams[i].aead_iv.length = options->aead_iv.length; in l2fwd_main_loop() 1313 options->aead_iv.length = in l2fwd_crypto_parse_args_long_options() 1480 options->aead_iv.length = 0; in l2fwd_crypto_default_options() 1530 rte_hexdump(stdout, "IV:", options->aead_iv.data, options->aead_iv.length); in display_aead_info() 2341 options->aead_iv.length = in initialize_cryptodevs() [all …]
|
| /f-stack/dpdk/examples/ip_pipeline/examples/ |
| H A D | flow_crypto.cli | 53 …pt type aead aead_algo aes-gcm aead_key 000102030405060708090a0b0c0d0e0f aead_iv 00010203040506070… 55 …pt type aead aead_algo aes-gcm aead_key 000102030405060708090a0b0c0d0e0f aead_iv 00010203040506070…
|
| /f-stack/dpdk/doc/guides/sample_app_ug/ |
| H A D | l2_forward_crypto.rst | 49 [--aead_key_random_size SIZE] [--aead_iv] [--aead_iv_random_size SIZE] / 132 * aead_iv: set the AEAD IV to be used. Bytes has to be separated with ":" 136 Note that if --aead_iv is used, this will be ignored.
|
| H A D | ip_pipeline.rst | 498 aead_algo <algo> aead_key <key> aead_iv <iv> aead_aad <aad>
|