1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:48:12 +00:00

Everywhere: Fix a bunch of typos

This commit is contained in:
Linus Groh 2022-05-29 11:50:10 +01:00 committed by Andreas Kling
parent f377951178
commit 173dcfb7cb
17 changed files with 23 additions and 23 deletions

View file

@ -112,7 +112,7 @@ ByteBuffer StandardSecurityHandler::compute_user_password_value<false>(ByteBuffe
// described in [Algorithm 2]
auto encryption_key = compute_encryption_key(password_string);
// b) Initialize the MD5 hash functino and pass the 32-byte padding string
// b) Initialize the MD5 hash function and pass the 32-byte padding string
// shown in step (a) of [Algorithm 2] as input to this function
Crypto::Hash::MD5 md5;
md5.update(standard_encryption_key_padding_bytes);