Currently you have sha256 and sha512.
Could you consider adding blake2b in 256 & 512 ?
Yes the blake functions are under /x/crypto but as Filippo Valsorda (maintainer of crypto/... and x/crypto...) says here, you should not treat them differently as they are maintained in the same manner. Its just that x has a faster cadence.
As for why Blake2b ? The official website covers it nicely. TL;DR 64-bit friendly and works better on constrained machines, especially those with no hardware acceleration for SHA.
Currently you have
sha256andsha512.Could you consider adding
blake2bin 256 & 512 ?Yes the blake functions are under
/x/cryptobut as Filippo Valsorda (maintainer of crypto/... and x/crypto...) says here, you should not treat them differently as they are maintained in the same manner. Its just thatxhas a faster cadence.As for why Blake2b ? The official website covers it nicely. TL;DR 64-bit friendly and works better on constrained machines, especially those with no hardware acceleration for SHA.