diff options
-rw-r--r-- | Userland/Libraries/LibCrypto/Cipher/Mode/CBC.h | 2 | ||||
-rw-r--r-- | Userland/Libraries/LibCrypto/Cipher/Mode/CTR.h | 2 | ||||
-rw-r--r-- | Userland/Libraries/LibCrypto/Cipher/Mode/GCM.h | 2 | ||||
-rw-r--r-- | Userland/Libraries/LibCrypto/Cipher/Mode/Mode.h | 2 | ||||
-rw-r--r-- | Userland/Libraries/LibCrypto/PK/PK.h | 4 | ||||
-rw-r--r-- | Userland/Libraries/LibCrypto/PK/RSA.h | 4 |
6 files changed, 6 insertions, 10 deletions
diff --git a/Userland/Libraries/LibCrypto/Cipher/Mode/CBC.h b/Userland/Libraries/LibCrypto/Cipher/Mode/CBC.h index 4bf5065bdc..a32a0874e3 100644 --- a/Userland/Libraries/LibCrypto/Cipher/Mode/CBC.h +++ b/Userland/Libraries/LibCrypto/Cipher/Mode/CBC.h @@ -19,7 +19,7 @@ class CBC : public Mode<T> { public: constexpr static size_t IVSizeInBits = 128; - virtual ~CBC() { } + virtual ~CBC() = default; template<typename... Args> explicit constexpr CBC<T>(Args... args) : Mode<T>(args...) 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. diff --git a/Userland/Libraries/LibCrypto/Cipher/Mode/GCM.h b/Userland/Libraries/LibCrypto/Cipher/Mode/GCM.h index 32558210c4..228b79faea 100644 --- a/Userland/Libraries/LibCrypto/Cipher/Mode/GCM.h +++ b/Userland/Libraries/LibCrypto/Cipher/Mode/GCM.h @@ -24,7 +24,7 @@ class GCM : public CTR<T, IncrementFunction> { public: constexpr static size_t IVSizeInBits = 128; - virtual ~GCM() { } + virtual ~GCM() = default; template<typename... Args> explicit constexpr GCM<T>(Args... args) diff --git a/Userland/Libraries/LibCrypto/Cipher/Mode/Mode.h b/Userland/Libraries/LibCrypto/Cipher/Mode/Mode.h index 4eaf75725f..50c39f9f0c 100644 --- a/Userland/Libraries/LibCrypto/Cipher/Mode/Mode.h +++ b/Userland/Libraries/LibCrypto/Cipher/Mode/Mode.h @@ -17,7 +17,7 @@ namespace Cipher { template<typename T> class Mode { public: - virtual ~Mode() { } + virtual ~Mode() = default; virtual void encrypt(ReadonlyBytes in, Bytes& out, ReadonlyBytes ivec = {}, Bytes* ivec_out = nullptr) = 0; virtual void decrypt(ReadonlyBytes in, Bytes& out, ReadonlyBytes ivec = {}) = 0; diff --git a/Userland/Libraries/LibCrypto/PK/PK.h b/Userland/Libraries/LibCrypto/PK/PK.h index 40558fd313..75159db4c0 100644 --- a/Userland/Libraries/LibCrypto/PK/PK.h +++ b/Userland/Libraries/LibCrypto/PK/PK.h @@ -25,9 +25,7 @@ public: { } - PKSystem() - { - } + PKSystem() = default; virtual void encrypt(ReadonlyBytes in, Bytes& out) = 0; virtual void decrypt(ReadonlyBytes in, Bytes& out) = 0; diff --git a/Userland/Libraries/LibCrypto/PK/RSA.h b/Userland/Libraries/LibCrypto/PK/RSA.h index 137f1f2f5f..97867c3055 100644 --- a/Userland/Libraries/LibCrypto/PK/RSA.h +++ b/Userland/Libraries/LibCrypto/PK/RSA.h @@ -60,9 +60,7 @@ public: { } - RSAPrivateKey() - { - } + RSAPrivateKey() = default; const Integer& modulus() const { return m_modulus; } const Integer& private_exponent() const { return m_private_exponent; } |