strawbrary / php-blake2

PHP wrapper for the BLAKE2 hashing function
MIT License
40 stars 16 forks source link

should be added to hash_algos()/hash()/hash_file()/hash_init() & co #16

Open divinity76 opened 4 years ago

divinity76 commented 4 years ago

with an empty key

MikeRow commented 4 years ago

Actually the blake2_file/blake2_sum are using init,update,final. But not usable for our purpose I guess.

MikeRow commented 4 years ago

@divinity76 Concatenating binary strings like $a . $b, gives the same results of _update($a), _update($b)