Decrypt data @data with key @key, skipping @skip first bytes of the keystream
(key, data, skip=0)
| 30 | |
| 31 | |
| 32 | def ARC4_decrypt(key, data, skip=0): |
| 33 | """Decrypt data @data with key @key, skipping @skip first bytes of the |
| 34 | keystream""" |
| 35 | return ARC4_encrypt(key, data, skip) |
| 36 | |
| 37 | # Custom WPA PseudoRandomFunction |
| 38 |
no test coverage detected
searching dependent graphs…