i love rushing and making stupid mistakes!!

This commit is contained in:
2026-05-26 16:13:07 -04:00
parent eb8d304950
commit 00d816ad17
@@ -68,7 +68,7 @@ public final class SHA256Advanced {
public static String Byte2Hex(byte[] b) {
StringBuilder o = new StringBuilder(b.length * 2);
for (byte bi : b) {
o.append(String.format("%02x",b&0xff))
o.append(String.format("%02x",bi&0xff));
}
return o.toString();
}