blake2s, blake2b: fix typo in new_digest description (#23531)

This commit is contained in:
Kim Shrier 2025-01-19 21:13:18 -07:00 committed by GitHub
parent f9d3bd39a6
commit 839d526780
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -145,7 +145,7 @@ fn (err InputBufferSizeError) msg() string {
// new_digest creates an initialized digest structure based on
// the hash size and whether or not you specify a MAC key.
//
// hash_size - the number if bytes in the generated hash.
// hash_size - the number of bytes in the generated hash.
// Legal values are between 1 and 64.
//
// key - key used for generating a prefix MAC. A zero length

View File

@ -144,7 +144,7 @@ fn (err InputBufferSizeError) msg() string {
// new_digest creates an initialized digest structure based on
// the hash size and whether or not you specify a MAC key.
//
// hash_size - the number if bytes in the generated hash.
// hash_size - the number of bytes in the generated hash.
// Legal values are between 1 and 32.
//
// key - key used for generating a prefix MAC. A zero length