paragonie / pecl-libsodium-doc

Free Online Documentation for the Libsodium PHP Extension
https://paragonie.com/book/pecl-libsodium
Creative Commons Attribution 4.0 International
88 stars 11 forks source link

5/8 byte output lenght #22

Closed MikeRow closed 4 years ago

MikeRow commented 4 years ago

Hello, I need an ouput of 5 or 8 byte to generate a crypto work or validate an account

$state = sodium_crypto_generichash_init(null, 5); $state = sodium_crypto_generichash_init(null, 8);

But I can't set less than 16. Any way to solve this?

jedisct1 commented 4 years ago

You can output 16 bytes and truncate to 5 bytes if this is really what you need.

MikeRow commented 4 years ago

Ok, I'll try, to keep the output correct, should I truncate from begin or end? Apply any reverse?

jedisct1 commented 4 years ago

Whatever. All bits have the same properties.