mirror of
https://github.com/thunderbrewhq/common.git
synced 2025-12-12 11:12:29 +00:00
13 lines
228 B
C++
13 lines
228 B
C++
#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
|
|
}
|