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
# Harry Sauers | |
# rc4.py | |
# demo of RC4 encryption algorithm | |
def key_scheduling(key): | |
sched = [i for i in range(0, 256)] | |
i = 0 | |
for j in range(0, 256): |
OlderNewer