aboutsummaryrefslogtreecommitdiff
path: root/src/hash/md5.c
diff options
context:
space:
mode:
authorame <[email protected]>2024-07-11 12:27:06 -0500
committerame <[email protected]>2024-07-11 12:27:06 -0500
commit027c7a7622a4aa4d0ed6483ba495ab91e0c68991 (patch)
tree7d5bc653f6bec52494604ac8c805e311bae080f4 /src/hash/md5.c
parent90a2acc2f0c9d3904e1dea737e45ef6b10f96a22 (diff)
fixes to ub:33 hashes now safe
Diffstat (limited to 'src/hash/md5.c')
-rw-r--r--src/hash/md5.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/hash/md5.c b/src/hash/md5.c
index 78211cd..1b3f508 100644
--- a/src/hash/md5.c
+++ b/src/hash/md5.c
@@ -37,7 +37,6 @@ struct md5_hash md5_init_l(lua_State* L){
void md5_round(struct md5_hash* hash){
uint32_t* M = (uint32_t *)(hash->buffer);
-
uint32_t A = hash->a0;
uint32_t B = hash->b0;
uint32_t C = hash->c0;