aboutsummaryrefslogtreecommitdiff
path: root/src/common/Cryptography/ARC4.h
diff options
context:
space:
mode:
authorjackpoz <giacomopoz@gmail.com>2016-08-03 23:33:36 +0200
committerjackpoz <giacomopoz@gmail.com>2016-08-03 23:33:36 +0200
commite4b2e0450f9cf38b8c69c2877068cee4e5f99dbc (patch)
tree450f2d2230bc410d2d0dab73aec945aac8185581 /src/common/Cryptography/ARC4.h
parent25dc3dd7a2fe1cea41b68559a7ccc0faa5ec5fa3 (diff)
Common/Crypto: Reduce differences between 3.3.5 and 6.x branches
Code functionality shouldn't have been modified.
Diffstat (limited to 'src/common/Cryptography/ARC4.h')
-rw-r--r--src/common/Cryptography/ARC4.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/Cryptography/ARC4.h b/src/common/Cryptography/ARC4.h
index 7e680176836..df412944ef6 100644
--- a/src/common/Cryptography/ARC4.h
+++ b/src/common/Cryptography/ARC4.h
@@ -25,8 +25,8 @@
class TC_COMMON_API ARC4
{
public:
- ARC4(uint8 len);
- ARC4(uint8 *seed, uint8 len);
+ ARC4(uint32 len);
+ ARC4(uint8 *seed, uint32 len);
~ARC4();
void Init(uint8 *seed);
void UpdateData(int len, uint8 *data);