diff options
author | lloyd <[email protected]> | 2009-10-29 01:42:27 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-10-29 01:42:27 +0000 |
commit | 542d20113d12d32fc0cea8480358709602227d55 (patch) | |
tree | fde97d8eb6b718b0384b0bccb6e4a14780bc81c4 /src/block/xtea | |
parent | f14c48a80cdbd2d134bf706c631018bf683e44d9 (diff) | |
parent | 78cb47ae1b43c51d6e91531f701ccf03fa8ea2c6 (diff) |
propagate from branch 'net.randombit.botan' (head 54d2cc7b00ecd5f41295e147d23ab6d294309f61)
to branch 'net.randombit.botan.general-simd' (head 9cb1b5f00bfefd05cd9555489db34e6d86867aca)
Diffstat (limited to 'src/block/xtea')
-rw-r--r-- | src/block/xtea/xtea.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/xtea/xtea.h b/src/block/xtea/xtea.h index f3b554edb..9982d0712 100644 --- a/src/block/xtea/xtea.h +++ b/src/block/xtea/xtea.h @@ -26,7 +26,7 @@ class BOTAN_DLL XTEA : public BlockCipher BlockCipher* clone() const { return new XTEA; } XTEA() : BlockCipher(8, 16) {} - private: + protected: void key_schedule(const byte[], u32bit); SecureBuffer<u32bit, 64> EK; }; |