Match crypto_generichash_blake2b_{saltbytes/personalbytes} with prototypes.

This commit is contained in:
Frank Denis 2014-05-12 10:15:16 -07:00
parent fe70a07f04
commit 5940f6794c

View File

@ -26,12 +26,12 @@ crypto_generichash_blake2b_blockbytes(void) {
}
size_t
crypto_generichash_blake2b_salt_bytes(void) {
crypto_generichash_blake2b_saltbytes(void) {
return crypto_generichash_blake2b_SALTBYTES;
}
size_t
crypto_generichash_blake2b_personal_bytes(void) {
crypto_generichash_blake2b_personalbytes(void) {
return crypto_generichash_blake2b_PERSONALBYTES;
}