| 1532 | } |
| 1533 | |
| 1534 | static void |
| 1535 | display_cipher_info(struct l2fwd_crypto_options *options) |
| 1536 | { |
| 1537 | printf("\n---- Cipher information ---\n"); |
| 1538 | printf("Algorithm: %s\n", |
| 1539 | rte_cryptodev_get_cipher_algo_string(options->cipher_xform.cipher.algo)); |
| 1540 | rte_hexdump(stdout, "Cipher key:", |
| 1541 | options->cipher_xform.cipher.key.data, |
| 1542 | options->cipher_xform.cipher.key.length); |
| 1543 | rte_hexdump(stdout, "IV:", options->cipher_iv.data, options->cipher_iv.length); |
| 1544 | } |
| 1545 | |
| 1546 | static void |
| 1547 | display_auth_info(struct l2fwd_crypto_options *options) |
no test coverage detected