mirror of
https://github.com/djhackersdev/saltytools.git
synced 2026-04-24 15:37:21 -05:00
11 lines
168 B
C
11 lines
168 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
struct md5_hash {
|
|
uint8_t b[16];
|
|
};
|
|
|
|
int md5_compute(struct md5_hash *dest, const void *bytes, size_t nbytes);
|