restore md5

This commit is contained in:
2026-01-23 13:59:42 +01:00
parent a356991e60
commit a05c1aeb1b

View File

@@ -243,10 +243,10 @@ int HASH_UPDATE(HASH_CTX *c, const void *data_, size_t len) {
len -= n;
c->num = 0;
/*
* We use memset rather than OPENSSL_cleanse() here
* deliberately. Using OPENSSL_cleanse() here could be a
* performance issue. It will get properly cleansed on
* finalisation so this isn't a security problem.
* We use memset rather than OPENSSL_cleanse() here deliberately.
* Using OPENSSL_cleanse() here could be a performance issue. It
* will get properly cleansed on finalisation so this isn't a
* security problem.
*/
memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
} else {