aboutsummaryrefslogtreecommitdiffstats
path: root/src/cipher/serpent/serpent.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cipher/serpent/serpent.h')
-rw-r--r--src/cipher/serpent/serpent.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cipher/serpent/serpent.h b/src/cipher/serpent/serpent.h
index 685470e4c..76acff487 100644
--- a/src/cipher/serpent/serpent.h
+++ b/src/cipher/serpent/serpent.h
@@ -20,7 +20,7 @@ class BOTAN_DLL Serpent : public BlockCipher
std::string name() const { return "Serpent"; }
BlockCipher* clone() const { return new Serpent; }
Serpent() : BlockCipher(16, 16, 32, 8) {}
- private:
+ protected:
void enc(const byte[], byte[]) const;
void dec(const byte[], byte[]) const;
void key(const byte[], u32bit);