From bbb8765a6222efa9c31deb63b407a46763d6616a Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Sun, 16 Dec 2012 15:36:00 +0100 Subject: [PATCH] arcfour style --- src/arcfour.h | 59 ++++++++++++++++++++++++++------------------------- 1 file changed, 30 insertions(+), 29 deletions(-) diff --git a/src/arcfour.h b/src/arcfour.h index 1e4d7e1..6a4c26b 100644 --- a/src/arcfour.h +++ b/src/arcfour.h @@ -21,57 +21,58 @@ #include -template class arcfour { +template class arcfour +{ std::vector S; - inttype I,J; + inttype I, J; size_t mod; public: - bool init(size_t bits) { - if(bits>8*sizeof(inttype)) return false; - I=J=0; - S.resize(1< 8 * sizeof (inttype) ) return false; + I = J = 0; + S.resize (1 << bits); + mod = 1 << bits; + for (size_t i = 0; i < (1 << bits); ++i) { + S[i] = i; } return true; } void clear() { - I=J=0; - mod=0; + I = J = 0; + mod = 0; S.clear(); } - void load_key(const std::vector&K) { - inttype j=0,t; - for(size_t i=0;i&K) { + inttype j = 0, t; + for (size_t i = 0; i < mod; ++i) { + j = (j + S[i] + K[i % K.size()]) % mod; + t = S[j]; + S[j] = S[i]; + S[i] = t; } } inttype gen() { - I=(I+1)%mod; - J=(J+S[I])%mod; + I = (I + 1) % mod; + J = (J + S[I]) % mod; register inttype t; - t=S[J]; - S[J]=S[I]; - S[I]=t; + t = S[J]; + S[J] = S[I]; + S[I] = t; - return S[(S[I]+S[J])%mod]; + return S[ (S[I] + S[J]) % mod]; } - void discard(size_t n) { - for(size_t i=0;i&out) { - out.resize(n); - for(size_t i=0;i&out) { + out.resize (n); + for (size_t i = 0; i < n; ++i) out[i] = gen(); } };