Hi Everyone,

Aumasson and Bernstein's SipHash is now available. SipHash has some 
interesting use cases, so I'm guessing it will be helpful to some users. 
The commit of interest is 
https://github.com/weidai11/cryptopp/commit/9739ba8afe3cc32dd2cc007eae9dd9623f5baf19.

We have both the 64-bit and experimental 128-bit code. For the standard 
SipHash-2-4 with 64-bit MAC use:

    SipHash<2,4,false>

SipHash-2-4 with 128-bit MAC:

    SipHash<2,4,true>

The more conservative SipHash-4-8 can be created with:

    SipHash<4,8, {false|true}>

Its a header only implementation, so you can choose whatever values for 
Compression rounds and Finalization rounds you like. You won't run into 
problems with missing symbols.

Jeff

-- 
-- 
You received this message because you are subscribed to the "Crypto++ Users" 
Google Group.
To unsubscribe, send an email to [email protected].
More information about Crypto++ and this group is available at 
http://www.cryptopp.com.
--- 
You received this message because you are subscribed to the Google Groups 
"Crypto++ Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to