mirror of
https://github.com/Fishwaldo/bl_mcu_sdk.git
synced 2025-07-14 16:58:50 +00:00
* use nuttx libc, disable system libc * use tlsf as default * update lhal flash driver * add example readme * add flash ini for new flash tool * add fw header for new flash tool
8 lines
158 B
C
8 lines
158 B
C
#ifndef _ARCH_CRYPTO_H_
|
|
#define _ARCH_CRYPTO_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
void arch_md5(uint8_t *input, int len, uint8_t hash[16]);
|
|
|
|
#endif /* _ARCH_CRYPTO_H_ */
|