linux-imx/include/soc/fsl/dcp-blob.h
Kshitiz Varshney d1df3e94ee LF-8313-2: Update License to GPL-2.0
The license was wrong by mistake, this commit updates the license to
GPL-2.0 and removes the author name from file for maintaining
confidentiality as this code is NXP owned.

Signed-off-by: Kshitiz Varshney <kshitiz.varshney@nxp.com>
2023-02-08 12:04:04 +08:00

22 lines
394 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (C) 2022 NXP
*/
#ifndef __DCP_BLOB_H__
#define __DCP_BLOB_H__
#define MAX_KEY_SIZE 128
#define MAX_BLOB_SIZE 512
struct dcp_key_payload {
unsigned int key_len;
unsigned int blob_len;
unsigned char *key;
unsigned char *blob;
};
int mxs_dcp_blob_to_key(struct dcp_key_payload *p);
#endif