Recommend this page to a friend! |
Download .zip |
Info | Documentation | View files (2) | Download .zip | Reputation | Support forum | Blog (1) | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2021-01-09 (1 month ago) | Not yet rated by the users | Total: 2 | All time: 10,231 This week: 328 |
Version | License | PHP version | Categories | |||
blake2 1.0 | The PHP License | 5 | PHP 5, Cryptography |
Description | Author | ||||||||||||||||
This class can generate hashes of data using the Blake2 algorithm. Innovation Award
|
|
PHP Blake2b,Blake2s,Blake2X https://tools.ietf.org/html/rfc7693
https://www.blake2.net/blake2.pdf
https://www.blake2.net/blake2x.pdf
Included BLAKE2s, BLAKE 2b & BLAKE2XOF (modes 2b,2s & XOF 0)
Examples:
$data = ""; $key = ""; $salt = ""; $Personalization = "";
$b2 = new BLAKE2s($key,$salt,$Personalization); echo $b2->hash($data);
$b2 = new BLAKE2b($key,$salt,$Personalization); echo $b2->hash($data);
Extended hashes:
$b2 = new BLAKE2XOF("2s",$key,$salt,$Personalization); echo $b2->hash($data,XOF length);
$b2 = new BLAKE2XOF("2b",$key,$salt,$Personalization); echo $b2->hash($data,XOF length);
$b2 = new BLAKE2XOF("2s",$key,$salt,$Personalization); echo $b2->hash($data,0);
$b2 = new BLAKE2XOF("2b",$key,$salt,$Personalization); echo $b2->hash($data,0);
Test Vectors included
https://github.com/BLAKE2/BLAKE2/tree/master/testvectors
@denobisipsis 2021
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.