summaryrefslogtreecommitdiff
path: root/arc4.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2003-03-26 21:50:44 +0000
committerweidai <weidai11@users.noreply.github.com>2003-03-26 21:50:44 +0000
commitb4f6ef8e16db0be6ebc3e8aa01bf51ee52082aeb (patch)
treeef84fa621368e7bce53a7708b5188ae8df1d9ed3 /arc4.h
parent2ccaf2ef1d78727194b59d986b491e717c508917 (diff)
downloadcryptopp-git-b4f6ef8e16db0be6ebc3e8aa01bf51ee52082aeb.tar.gz
fix bugs in SEAL and Panama
Diffstat (limited to 'arc4.h')
-rw-r--r--arc4.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arc4.h b/arc4.h
index 51de9f12..cfb7de69 100644
--- a/arc4.h
+++ b/arc4.h
@@ -27,7 +27,7 @@ public:
typedef SymmetricCipherFinalTemplate<ARC4_Base> Decryption;
protected:
- void UncheckedSetKey(const NameValuePairs &params, const byte *key, unsigned int length);
+ void UncheckedSetKey(const NameValuePairs &params, const byte *key, unsigned int length, const byte *iv);
virtual unsigned int GetDefaultDiscardBytes() const {return 0;}
FixedSizeSecBlock<byte, 256> m_state;