mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-07-06 09:25:22 +02:00

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>
22 lines
394 B
C
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
|