summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCrypto/Cipher/Mode/CTR.h
diff options
context:
space:
mode:
authorBrian Gianforcaro <bgianf@serenityos.org>2021-09-15 23:32:51 -0700
committerAndreas Kling <kling@serenityos.org>2021-09-16 17:17:13 +0200
commitdba5710efa028cc9f7abde0c5fdf06a843ff41a1 (patch)
tree98988106581843e3ab75867192862f6614d9a711 /Userland/Libraries/LibCrypto/Cipher/Mode/CTR.h
parent5dbc72a1585c7992b2187db42516b5a49dd6c19d (diff)
downloadserenity-dba5710efa028cc9f7abde0c5fdf06a843ff41a1.zip
LibCrypto: Use default instead of an empty constructor/destructor
Default implementations allow for more optimizations. See: https://pvs-studio.com/en/docs/warnings/v832/
Diffstat (limited to 'Userland/Libraries/LibCrypto/Cipher/Mode/CTR.h')
-rw-r--r--Userland/Libraries/LibCrypto/Cipher/Mode/CTR.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibCrypto/Cipher/Mode/CTR.h b/Userland/Libraries/LibCrypto/Cipher/Mode/CTR.h
index 730f06e0bc..8a0d557083 100644
--- a/Userland/Libraries/LibCrypto/Cipher/Mode/CTR.h
+++ b/Userland/Libraries/LibCrypto/Cipher/Mode/CTR.h
@@ -88,7 +88,7 @@ class CTR : public Mode<T> {
public:
constexpr static size_t IVSizeInBits = 128;
- virtual ~CTR() { }
+ virtual ~CTR() = default;
// Must intercept `Intent`, because AES must always be set to
// Encryption, even when decrypting AES-CTR.