File: test_cryptodev_security_pdcp_test_func.h

package info (click to toggle)
dpdk 25.11-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 127,892 kB
  • sloc: ansic: 2,358,479; python: 16,426; sh: 4,474; makefile: 1,713; awk: 70
file content (48 lines) | stat: -rw-r--r-- 1,249 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* SPDX-License-Identifier: BSD-3-Clause
 * Copyright 2019 NXP
 */

#ifndef SECURITY_PDCP_TEST_FUNC_H_
#define SECURITY_PDCP_TEST_FUNC_H_

#define PDCP_CPLANE_OFFSET		0
#define PDCP_CPLANE_LONG_SN_OFFSET	32
#define PDCP_UPLANE_OFFSET		64
#define LONG_SEQ_NUM_OFFSET		0
#define SHORT_SEQ_NUM_OFFSET		2
#define FIFTEEN_BIT_SEQ_NUM_OFFSET	4
#define EIGHTEEN_BIT_SEQ_NUM_OFFSET	6
#define UPLINK				0
#define DOWNLINK			1
/* key length(in bytes) for F8 */
#define F8_KEY_LEN			16

#define PDCP_UPLANE_12BIT_OFFSET	(PDCP_UPLANE_OFFSET + 32)
#define PDCP_UPLANE_18BIT_OFFSET	(PDCP_UPLANE_12BIT_OFFSET + 32)

enum enc_alg_off {
	NULL_ENC = 0,
	SNOW_ENC = 8,
	AES_ENC = 16,
	ZUC_ENC = 24
};
enum auth_alg_off {
	NULL_AUTH = 0,
	SNOW_AUTH = 2,
	AES_AUTH = 4,
	ZUC_AUTH = 6
};

int test_pdcp_proto_cplane_encap(int i);
int test_pdcp_proto_uplane_encap(int i);
int test_pdcp_proto_uplane_encap_with_int(int i);
int test_pdcp_proto_cplane_decap(int i);
int test_pdcp_proto_uplane_decap(int i);
int test_pdcp_proto_uplane_decap_with_int(int i);

int test_PDCP_PROTO_cplane_encap_all(void);
int test_PDCP_PROTO_cplane_decap_all(void);
int test_PDCP_PROTO_uplane_encap_all(void);
int test_PDCP_PROTO_uplane_decap_all(void);

#endif /* SECURITY_PDCP_TEST_FUNC_H_ */