21 lines
520 B
C
21 lines
520 B
C
|
|
/*
|
||
|
|
* md5.h
|
||
|
|
*
|
||
|
|
* Created on: Nov 12, 2025
|
||
|
|
* Author: cc
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef MCU_DRIVER_INC_MD5_H_
|
||
|
|
#define MCU_DRIVER_INC_MD5_H_
|
||
|
|
|
||
|
|
#include <stdint.h>
|
||
|
|
#include <stdio.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
#include <string.h>
|
||
|
|
|
||
|
|
void MD5Digest(char *pszInput, unsigned int nInputSize, char *pszOutPut);
|
||
|
|
void MD5Digest_SRAM(uint32_t add, unsigned int nInputSize, char *pszOutPut);
|
||
|
|
void MD5Digest_FLASH(uint32_t add, unsigned int nInputSize, char *pszOutPut);
|
||
|
|
|
||
|
|
#endif /* MCU_DRIVER_INC_MD5_H_ */
|