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

LibCrypto: Format all files with clang-format 10

This commit is contained in:
AnotherTest 2020-05-29 19:52:30 +04:30 committed by Andreas Kling
parent d52ea37717
commit d497521d2b
4 changed files with 85 additions and 86 deletions

View file

@ -89,7 +89,7 @@ struct AESCipherKey : public CipherKey {
expand_decrypt_key(user_key, key_bits);
}
virtual ~AESCipherKey() override {}
virtual ~AESCipherKey() override { }
size_t rounds() const { return m_rounds; }
size_t length() const { return m_bits / 8; }