KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
siphash-python
★ 12
Open GitHub ↗
A Python implementation of SipHash.
Download README (.md)
Explore Similar Repositories
avhttp
:
avhttp is cocurrent http downloader
RocketMission
:
WinForms application using C# .NET 2.0
timezone
:
A small R package for finding timezone names from geographic coordinates
mudstone
:
Basic front-end framework for projects
amazonfileupload
:
An ASP.NET MVC 4 application demonstrating upload of files to Amazon S3 storage
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
siphash-python
?
Download (.md)
# siphash-python A Python implementation of [SipHash](https://131002.net/siphash/). The source code is under MIT license. ## Usage Import as a class: >>> from siphash import SipHash >>> my_hash = SipHash() Or use specific `c` and `d`: >>> my_hash = SipHash(c=2, d=4) Use a 128-bit key to authenticate a string: >>> k = 0x0f0e0d0c0b0a09080706050403020100 >>> m = 'A short message' >>> t = my_hash.auth(k, m) >>> hex(t) '0xae43dfaed1ab1c00L'