diff options
| author | ame <[email protected]> | 2023-11-06 20:08:48 -0600 |
|---|---|---|
| committer | ame <[email protected]> | 2023-11-06 20:08:48 -0600 |
| commit | 829ad28a66fae082f8d2e8df27164b52592a5ee6 (patch) | |
| tree | 82df02dd802224f330470b2479afe24af14b3527 /src/hash/md5.h | |
| parent | 2b4f5bdf9ee42d321c2904da9595c11f9a7c592b (diff) | |
header stuff
Diffstat (limited to 'src/hash/md5.h')
| -rw-r--r-- | src/hash/md5.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/hash/md5.h b/src/hash/md5.h index 3bc7556..70161bd 100644 --- a/src/hash/md5.h +++ b/src/hash/md5.h @@ -1,3 +1,12 @@ #include "../lua.h" +/** + * calculates a md5 of bytes + * + * @param {char*} input bytes + * @param {char[64]} output stream + * @return {void} +*/ +void i_md5(char*,char*); + int l_md5(lua_State*); |
