mirror of https://github.com/dnomd343/md5sum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
478 B
23 lines
478 B
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace md5 {
|
|
|
|
constexpr uint32_t MD5_A = 0x67452301;
|
|
constexpr uint32_t MD5_B = 0xefcdab89;
|
|
constexpr uint32_t MD5_C = 0x98badcfe;
|
|
constexpr uint32_t MD5_D = 0x10325476;
|
|
|
|
struct md5_ctx {
|
|
uint32_t A = MD5_A;
|
|
uint32_t B = MD5_B;
|
|
uint32_t C = MD5_C;
|
|
uint32_t D = MD5_D;
|
|
uint64_t size = 0;
|
|
};
|
|
|
|
void md5_reset(struct md5_ctx *ctx);
|
|
void md5_process(struct md5_ctx *ctx, const void *buffer, uint64_t len);
|
|
|
|
} // namespace md5
|
|
|