aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/xtea
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-10-29 01:42:27 +0000
committerlloyd <[email protected]>2009-10-29 01:42:27 +0000
commit542d20113d12d32fc0cea8480358709602227d55 (patch)
treefde97d8eb6b718b0384b0bccb6e4a14780bc81c4 /src/block/xtea
parentf14c48a80cdbd2d134bf706c631018bf683e44d9 (diff)
parent78cb47ae1b43c51d6e91531f701ccf03fa8ea2c6 (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.h2
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;
};