test/security: add inline inbound IPsec cases
[dpdk.git] / app / test / test_security_inline_proto_vectors.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(C) 2022 Marvell.
3  */
4 #ifndef _TEST_INLINE_IPSEC_REASSEMBLY_VECTORS_H_
5 #define _TEST_INLINE_IPSEC_REASSEMBLY_VECTORS_H_
6
7 #include "test_cryptodev_security_ipsec.h"
8
9 uint8_t dummy_ipv4_eth_hdr[] = {
10                 /* ETH */
11                 0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
12                 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x08, 0x00,
13 };
14 uint8_t dummy_ipv6_eth_hdr[] = {
15                 /* ETH */
16                 0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1,
17                 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x86, 0xdd,
18 };
19
20 #endif