aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/block/aes/aes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/block/aes/aes.h')
-rw-r--r--src/lib/block/aes/aes.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/block/aes/aes.h b/src/lib/block/aes/aes.h
index e22e96e00..6bd38cada 100644
--- a/src/lib/block/aes/aes.h
+++ b/src/lib/block/aes/aes.h
@@ -23,7 +23,7 @@ class BOTAN_DLL AES_128 final : public Block_Cipher_Fixed_Params<16, 16>
void clear() override;
- const char* provider() const override;
+ std::string provider() const override;
std::string name() const override { return "AES-128"; }
BlockCipher* clone() const override { return new AES_128; }
private:
@@ -56,7 +56,7 @@ class BOTAN_DLL AES_192 final : public Block_Cipher_Fixed_Params<16, 24>
void clear() override;
- const char* provider() const override;
+ std::string provider() const override;
std::string name() const override { return "AES-192"; }
BlockCipher* clone() const override { return new AES_192; }
private:
@@ -89,7 +89,7 @@ class BOTAN_DLL AES_256 final : public Block_Cipher_Fixed_Params<16, 32>
void clear() override;
- const char* provider() const override;
+ std::string provider() const override;
std::string name() const override { return "AES-256"; }
BlockCipher* clone() const override { return new AES_256; }