Skip to content

Commit

Permalink
Clarify flag.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Oct 21, 2021
1 parent 410b30d commit c7d132f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/hash/md5_hash.cu
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ struct MD5Hasher {
{
// On destruction, finalize the message buffer and write out the current
// hexadecimal hash value to the result location.
// Add a one bit flag (10000000) to signal the end of the message.
// Add a one byte flag 0b10000000 to signal the end of the message.
uint8_t constexpr end_of_message = 0x80;
// The message length is appended to the end of the last chunk processed.
uint64_t const message_length_in_bits = message_length * 8;
Expand Down

0 comments on commit c7d132f

Please sign in to comment.