From 0d14a527906b4f1dc5700c0e0b5913a7aad444e4 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 5 Sep 2016 13:01:44 -0400 Subject: Fix RC6 VariableKeyLength information (Issue 252) --- rc6.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rc6.h') diff --git a/rc6.h b/rc6.h index 13b7bfa9..9ac55d80 100644 --- a/rc6.h +++ b/rc6.h @@ -13,7 +13,7 @@ NAMESPACE_BEGIN(CryptoPP) //! \class RC6_Info //! \brief RC6 block cipher information -struct RC6_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 0, 255>, public VariableRounds<20> +struct RC6_Info : public FixedBlockSize<16>, public VariableKeyLength<16, 16, 32, 8>, public VariableRounds<20> { static const char *StaticAlgorithmName() {return "RC6";} typedef word32 RC6_WORD; -- cgit v1.2.1