aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/xtea
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-10-29 01:40:55 +0000
committerlloyd <[email protected]>2009-10-29 01:40:55 +0000
commit78cb47ae1b43c51d6e91531f701ccf03fa8ea2c6 (patch)
treec71ff6ff187cc7ef15cf3c233ea7bdb43ef6f6df /src/block/xtea
parentee169027c6cd30923aa30a735eb801836ee593d2 (diff)
parent1bc4d2fb37c8f1e6e94a65ec67062826393dda7f (diff)
propagate from branch 'net.randombit.botan' (head 8fb69dd1c599ada1008c4cab2a6d502cbcc468e0)
to branch 'net.randombit.botan.general-simd' (head c05c9a6d398659891fb8cca170ed514ea7e6476d)
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;
};