summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCrypto
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-04-25 20:20:00 +0200
committerLinus Groh <mail@linusgroh.de>2021-04-25 20:20:00 +0200
commitdbe72fd9627f701210d69c9b01db762b2c950190 (patch)
treed2baf354b59d38f3ad486a73523fc43e8c3c6c3b /Userland/Libraries/LibCrypto
parent2d6be48c6f2353a5956341e9b947c715f29a6eaf (diff)
downloadserenity-dbe72fd9627f701210d69c9b01db762b2c950190.zip
Everywhere: Remove empty line after function body opening curly brace
Diffstat (limited to 'Userland/Libraries/LibCrypto')
-rw-r--r--Userland/Libraries/LibCrypto/Cipher/AES.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibCrypto/Cipher/AES.cpp b/Userland/Libraries/LibCrypto/Cipher/AES.cpp
index ba59218cbb..796e4f9fa4 100644
--- a/Userland/Libraries/LibCrypto/Cipher/AES.cpp
+++ b/Userland/Libraries/LibCrypto/Cipher/AES.cpp
@@ -288,7 +288,6 @@ void AESCipher::encrypt_block(const AESCipherBlock& in, AESCipherBlock& out)
void AESCipher::decrypt_block(const AESCipherBlock& in, AESCipherBlock& out)
{
-
u32 s0, s1, s2, s3, t0, t1, t2, t3;
size_t r { 0 };