15 lines
338 B
C
15 lines
338 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2025, ArtInChip Technology Co., Ltd
|
|
*/
|
|
#ifndef __FIRMWARE_SECURITY_H_
|
|
#define __FIRMWARE_SECURITY_H_
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
int firmware_security_init(void);
|
|
void firmware_security_decrypt(uint8_t *buf, unsigned int length);
|
|
|
|
#endif // __FIRMWARE_SECURITY_H_
|