mirror of
https://github.com/revyos/th1520-vendor-uboot.git
synced 2026-06-21 09:02:25 +02:00
34 lines
892 B
C
Executable File
34 lines
892 B
C
Executable File
/*
|
|
* Copyright (C) 2017-2020 Alibaba Group Holding Limited
|
|
*/
|
|
/******************************************************************************
|
|
* @file sec_library.h
|
|
* @brief Header File for sec library
|
|
* @version V1.0
|
|
* @date 20. Jul 2021
|
|
* @model sm4
|
|
******************************************************************************/
|
|
|
|
#ifndef _SL_H_
|
|
#define _SL_H_
|
|
|
|
#include "sec_crypto_errcode.h"
|
|
#include "sec_crypto_common.h"
|
|
#include "sec_crypto_aes.h"
|
|
#include "sec_crypto_rng.h"
|
|
#include "sec_crypto_rsa.h"
|
|
#include "sec_crypto_sha.h"
|
|
#include "sec_crypto_sm2.h"
|
|
#include "sec_crypto_sm4.h"
|
|
#include "sec_crypto_kdf.h"
|
|
#include "csi_efuse_api.h"
|
|
#include "csi_efuse_api.h"
|
|
#include "sec_crypto_des.h"
|
|
#include "sec_crypto_dsa.h"
|
|
#include "sec_crypto_ecc.h"
|
|
#include "sec_crypto_ecdh.h"
|
|
#include "csi_sec_img_verify.h"
|
|
/* NOTE add more header */
|
|
|
|
#endif /* _SL_H_ */
|