diff options
Diffstat (limited to 'README')
| -rw-r--r-- | README | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -0,0 +1,23 @@ +RC4 Decrypt +=========== + +A brute-force RC4 stream cipher decryption circuit for FPGAs. + +RC4 is a symmetric stream cipher common in internet protocols such as +SSL, WEP, and WPA. It has since been deem insecure due to multiple +vulnerabilities discovered. + +This circuit runs 108 cracking cores in parallel with interleaved +key-space partitioning. The circuit assumes the decryption was +successful if the resulting output are all ASCII printable characters +(non control characters). + +https://git.warricklo.net/rc4-decrypt/ + +Licence +------- + +Copyright (c) 2026 Warrick Lo and contributors. +Available under the CERN Open Hardware Licence Version 2 - Permissive. + +SPDX-License-Identifier: CERN-OHL-P-2.0 |