diff options
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Libraries/LibCrypto/Authentication/HMAC.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibCrypto/Authentication/HMAC.h b/Userland/Libraries/LibCrypto/Authentication/HMAC.h index 55d919c238..c1abba3956 100644 --- a/Userland/Libraries/LibCrypto/Authentication/HMAC.h +++ b/Userland/Libraries/LibCrypto/Authentication/HMAC.h @@ -85,7 +85,6 @@ private: // Note: The block size of all the current hash functions is 512 bits. Vector<u8, 64> v_key; v_key.resize(block_size); - __builtin_memset(v_key.data(), 0, block_size); auto key_buffer = v_key.span(); // m_key_data is zero'd, so copying the data in // the first few bytes leaves the rest zero, which |