This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# rc4 encryption | |
# modified from source: https://github.com/bozhu/RC4-Python/blob/master/rc4.py | |
import sys | |
def crypt(key, data): | |
S = list(range(256)) | |
j = 0 |