arcfour - Arc4Cipher.cs line 164
for (byte i = 0; i < STATE_LENGTH; i++)
Where STATE_LENGTH is 256.
Reinitalizes i to 0 (due to i being a byte), causes endless loop on key exchange till server timeout when using arcfour encryption.
for (byte i = 0; i < STATE_LENGTH; i++)
Where STATE_LENGTH is 256.
Reinitalizes i to 0 (due to i being a byte), causes endless loop on key exchange till server timeout when using arcfour encryption.