Tool for encoding / decoding with the RC4 (Rivest Cipher 4) algorithm used in particular in the TLS (Transport Layer Security) protocol.
RC4 Cipher - dCode
Tag(s) : Modern Cryptography
dCode is free and its tools are a valuable help in games, maths, geocaching, puzzles and problems to solve every day!
A suggestion ? a feedback ? a bug ? an idea ? Write to dCode!
The RC4 was created to be symmetric, the encryption phase is identical to decryption, use the form above.
RC4 for Rivest Cipher 4 is a symmetric and fast cipher algorithm, well suited to binary data, created by Ronald Rivest and used in some protocols like TLS or WEP.
The RC4 digit uses a key that can initialize an array of 256 boxes.
The algorithm that allows to initialize the array with the key key is:
// Pseudocode
for i = 0 -> 255 {
t[i] = i
}
j = 0
k = length(cle)
for i = 0 -> 255 {
j = (j + t[i] + key[i % k]) % 256
swap t[i] <-> t[j]
}
The array t can then be used to generate a stream by moving values and XOR operation.
The RC4 algorithm is then: // Pseudocode
a = b = 0
j = length(string)
codes = []
for i = 0 -> j {
a = (a + 1) % 256
b = (b + t[a]) % 256
swap t[a] <-> t[b]
codes []= ( t[ (t[a] + t[b]) % 256] ) XOR string[i]
}
print codes
The codes are values between 0 and 255.
Example: dCode (64,43,6F,64,65 in hexadecimal) encrypted with the key RC4 (52,43,34 in hexadecimal) is coded 2B,7F,DA,B6,1D (hexadecimal)
Identically 2B,7F,DA,B6,1D (in hexadecimal) decrypted with the same key RC4 (52,43,34 in hex) becomes 64,43,6F,64,65 (dCode in ASCII)
Decryption is exactly the same as encryption.
The codes generated by RC4 are between 0 and 255, usually represented in hexadecimal.
RC4 is pseudo-random, there is no easily detectable bias.
The code is also called RCfour, ARCFour, ARC4, Alleged RC4 or Ron's Code 4.
Any reference to WEP or TLS protocols is a clue.
RC4 was invented by Ronald Rivest (one of the inventors of RSA encryption) in 1987.
dCode retains ownership of the "RC4 Cipher" source code. Any algorithm for the "RC4 Cipher" algorithm, applet or snippet or script (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or any "RC4 Cipher" functions (calculate, convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (Python, Java, PHP, C#, Javascript, Matlab, etc.) or any database download or API access for "RC4 Cipher" or any other element are not public (except explicit open source licence like Creative Commons). Same with the download for offline use on PC, mobile, tablet, iPhone or Android app.
Reminder: dCode is an educational and teaching resource, accessible online for free and for everyone.
The content of the page "RC4 Cipher" and its results may be freely copied and reused, including for commercial purposes, provided that dCode.fr is cited as the source.
Exporting the results is free and can be done simply by clicking on the export icons ⤓ (.csv or .txt format) or ⧉ (copy and paste).
To cite dCode.fr on another website, use the link:
In a scientific article or book, the recommended bibliographic citation is: RC4 Cipher on dCode.fr [online website], retrieved on 2025-04-15,