Skip to content
/ hc256 Public
forked from drob0009/hc256

Python implementation of HC256 cipher

License

Notifications You must be signed in to change notification settings

ypid01/hc256

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hc256

Python implementation of HC256 cipher.

Not cryptographically secure.

Sample usage:

import hc256

some_key = b"\x01\x02\x03\x04"
some_iv = b"\x01\x02\x03\x04"

data = bytes("Hello", "ascii")
ctx = hc256.HC256(some_key, some_iv)
cipher = ctx.crypt(data)
print(cipher)

About

Python implementation of HC256 cipher

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%