diff options
| author | ame <[email protected]> | 2024-07-11 12:27:06 -0500 |
|---|---|---|
| committer | ame <[email protected]> | 2024-07-11 12:27:06 -0500 |
| commit | c57e5e58e197fca322c2840efa435eabb62e4d9d (patch) | |
| tree | 7d5bc653f6bec52494604ac8c805e311bae080f4 /src/hash/md5.c | |
| parent | 2999d3412ccf5c7fc1a9e84695c7a2bce69d3e82 (diff) | |
fixes to ub:33 hashes now safe
Diffstat (limited to 'src/hash/md5.c')
| -rw-r--r-- | src/hash/md5.c | 1 |
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;
|
