blob: 6de2edca546cdf6ab0ff88623d939e03b85b8979 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "function_target.h"
#include "WIFI_stubsmd5_dummy.h"
ARM_FUNC void MD5Final(u8 *digest, struct DGTHash1Context *context)
{
DGT_Hash1GetDigest_R(digest, context);
}
ARM_FUNC void MD5Update(struct DGTHash1Context *context, u8 *input, u32 length)
{
DGT_Hash1SetSource(context, input, length);
}
ARM_FUNC void MD5Init(struct DGTHash1Context *context)
{
DGT_Hash1Reset(context);
}
|