Skip to content

pydump/rc4

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Package rc4

Package rc4 exposes the RC4 algorithm.

pip3 install git+https://github.com/pydump/rc4.git

Examples

Stream encrypting:

import rc4

c = rc4.Cipher(b'cipher')
with open('src', 'rb') as src, open('dst', 'wb') as dst:
    c.stream(src, dst)

About

Package rc4 exposes the RC4 algorithm.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages