RT-Thread RTOS 1.2.0
An open source embedded real-time operating system
载入中...
搜索中...
未找到
crypto.h
浏览该文件的文档.
1/*
2 * Copyright (c) 2006-2023, RT-Thread Development Team
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 *
6 * Change Logs:
7 * Date Author Notes
8 * 2019-05-17 tyx the first version
9 */
10
11#ifndef __CRYPTO_H__
12#define __CRYPTO_H__
13
14#include <rtthread.h>
15#include <hwcrypto.h>
16#include <hw_symmetric.h>
17#include <hw_rng.h>
18#include <hw_hash.h>
19#include <hw_crc.h>
20#include <hw_gcm.h>
21#include <hw_bignum.h>
22
23#endif