Skip to content

oversider-kosma/toyhash

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

toyhash

Some simple hash function implementation with API similar to the real ones.

Written for fun and self-education. According to the rule "Don't roll your own crypto!" it shouldn't be used in any real project.

Usage

from toyhash import toyhash256

some_hash = toyhash256(b'Gort!')
d1 = some_hash.digest()  # b"!'\x1a7\xa0\xed\x84\xf7>\x92\x14\r\xcaU=\x8fb\xe7\xb7\x06T|\xed3k\xd7\x7f\xd7\xcc\xb8\xc1\xd4"
hd1 = some_hash.hexdigest()  # '21271a37a0ed84f73e92140dca553d8f62e7b706547ced336bd77fd7ccb8c1d4'

some_hash.update(b'Klaatu barada nikto!')
hd2 = some_hash.hexdigest()  # 'f0bc994cc652a9e190a53db1aca206613d513bfeb1f7c60ea10938c443760549'

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages