1 /* SPDX-License-Identifier: BSD-3-Clause */
2 /* Copyright(c) 2007-2022 Intel Corporation */
3 
4 /**
5  *****************************************************************************
6  * @file dc_ns_header_footer.c
7  *
8  * @ingroup Dc_DataCompression
9  *
10  * @description
11  *      Implementation of the Data Compression header and footer operations.
12  *
13  *****************************************************************************/
14 
15 /*
16  *******************************************************************************
17  * Include public/global header files
18  *******************************************************************************
19  */
20 #include "cpa.h"
21 #include "cpa_dc.h"
22 
23 /*
24  *******************************************************************************
25  * Include private header files
26  *******************************************************************************
27  */
28 #include "dc_session.h"
29 
30 CpaStatus
31 cpaDcNsGenerateHeader(CpaDcNsSetupData *pSetupData,
32 		      CpaFlatBuffer *pDestBuff,
33 		      Cpa32U *count)
34 {
35 	return CPA_STATUS_UNSUPPORTED;
36 }
37 
38 CpaStatus
39 cpaDcNsGenerateFooter(CpaDcNsSetupData *pSetupData,
40 		      Cpa64U totalLength,
41 		      CpaFlatBuffer *pDestBuff,
42 		      CpaDcRqResults *pResults)
43 {
44 	return CPA_STATUS_UNSUPPORTED;
45 }
46