Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/hash2/hashing_bytes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ a digest of 256 bits.

BLAKE2 is also designed explicitly with keyed hashing in mind, making it functionally equivalent to a Message Authentication Code (MAC). The seeded constructors act as the
keys, BLAKE2b using a maximum of the first 64 bytes of input as the key and BLAKE2s using a maximum of the first 32 bytes. Excess input is handled by passing it to the `update()` function
and then `result()` is called. HMAC typedefs are still provided for convenience and for compatiblity with existing protocols such as https://noiseprotocol.org/noise.html[Noise]. BLAKE2
and then `result()` is called. HMAC typedefs are still provided for convenience and for compatibility with existing protocols such as https://noiseprotocol.org/noise.html[Noise]. BLAKE2
behaves as all other cryptographic hash functions do when used with `hmac<H>`.

### RIPEMD-160, RIPEMD-128
Expand Down
2 changes: 1 addition & 1 deletion doc/hash2/reference/sha3.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ The only differences between them are the size of the message digest and the siz
which is by truncating the bottom portion of the 1600-bit state.

The `shake_128` and `shake_256` functions are similar to the fixed-digest functions except they use a different delimiter to denote finalization of the
digest and extending the output has defined behavior, unlike the default pseudorandom behavior used elsewhere in the library. But they work similary
digest and extending the output has defined behavior, unlike the default pseudorandom behavior used elsewhere in the library. But they work similarly
in that truncations of the 1600-bit state are returned as the digest.

## sha3_256
Expand Down