Skip to content

Commit

Permalink
Increase MD5 cnonce length to 16 bytes for full 128-bit entropy
Browse files Browse the repository at this point in the history
  • Loading branch information
arturobernalg committed Nov 3, 2024
1 parent a4a3930 commit 4da0d60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ static byte[] createCnonce(final String algorithm) {
break;
case "MD5":
default:
length = 8;
length = 16;
break;
}
final byte[] tmp = new byte[length];
Expand Down

0 comments on commit 4da0d60

Please sign in to comment.