diff --git a/src/algos_enc.cpp b/src/algos_enc.cpp index 0da60e9..8042a80 100644 --- a/src/algos_enc.cpp +++ b/src/algos_enc.cpp @@ -231,6 +231,8 @@ static bool message_unpad (std::vector in, bvector&out) * otherwise it probably fails. miserably. */ +#define arcfour_discard 4096 + template < class pubkey_type, int plainsize, int ciphersize, @@ -294,7 +296,7 @@ static int fo_encrypt (const bvector&plain, bvector&cipher, K.begin() + ( (i + 1) << 8) ) ); arc.load_key (subkey); } - arc.discard (256); + arc.discard (arcfour_discard); for (i = 0; i < M.size(); ++i) M[i] = M[i] ^ arc.gen(); //append the message part to the ciphertext @@ -359,7 +361,7 @@ static int fo_decrypt (const bvector&cipher, bvector&plain, K.begin() + ( (i + 1) << 8) ) ); arc.load_key (subkey); } - arc.discard (256); + arc.discard (arcfour_discard); //decrypt the message part for (i = 0; i < M.size(); ++i) M[i] = M[i] ^ arc.gen(); diff --git a/src/fmtseq.cpp b/src/fmtseq.cpp index 0777721..389f254 100644 --- a/src/fmtseq.cpp +++ b/src/fmtseq.cpp @@ -35,7 +35,7 @@ void prepare_keygen (arcfour& kg, const std::vector&SK, uint idx) } tmp.resize (16, 0); //prevent chaining to other numbers kg.load_key (tmp); - kg.discard (256); + kg.discard (4096); } static void add_zero_checksum (bvector& v) diff --git a/src/generator.cpp b/src/generator.cpp index c694916..364587b 100644 --- a/src/generator.cpp +++ b/src/generator.cpp @@ -42,6 +42,6 @@ void arcfour_rng::seed (uint bits, bool quick) f.close(); r.load_key (s); - r.discard (256); + r.discard (4096); }