summaryrefslogtreecommitdiff
path: root/idea.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'idea.cpp')
-rw-r--r--idea.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/idea.cpp b/idea.cpp
index 85d933a..b0768fa 100644
--- a/idea.cpp
+++ b/idea.cpp
@@ -78,7 +78,7 @@ inline void IDEA::Base::LookupMUL(IDEA::Word &a, IDEA::Word b)
}
#endif // IDEA_LARGECACHE
-void IDEA::Base::UncheckedSetKey(CipherDir direction, const byte *userKey, unsigned int length)
+void IDEA::Base::UncheckedSetKey(const byte *userKey, unsigned int length, const NameValuePairs &)
{
AssertValidKeyLength(length);
@@ -88,7 +88,7 @@ void IDEA::Base::UncheckedSetKey(CipherDir direction, const byte *userKey, unsig
EnKey(userKey);
- if (direction==DECRYPTION)
+ if (!IsForwardTransformation())
DeKey();
#ifdef IDEA_LARGECACHE