mirror of
https://github.com/thunderbrewhq/common.git
synced 2025-12-12 03:02:29 +00:00
feat(md5): add stubbed MD5 functions
This commit is contained in:
parent
684f7096c1
commit
57a1dae84c
2 changed files with 31 additions and 0 deletions
13
common/MD5.cpp
Normal file
13
common/MD5.cpp
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#include "common/MD5.hpp"
|
||||
|
||||
void MD5Init(MD5_CTX* context) {
|
||||
// TODO
|
||||
}
|
||||
|
||||
void MD5Update(MD5_CTX* context, uint8_t* input, uint32_t inputLen) {
|
||||
// TODO
|
||||
}
|
||||
|
||||
void MD5Final(uint8_t digest[16], MD5_CTX* context) {
|
||||
// TODO
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue