Skip to content

Commit e5807d9

Browse files
committed
std: Deprecate 'x'/'X'/'e'/'E' special cases for u8 slices
Let's follow the road paved by the removal of 'z'/'Z', the Formatter pattern is nice enough to let us remove the remaining four special cases and declare u8 slices free from any special casing!
1 parent baab1b2 commit e5807d9

File tree

9 files changed

+140
-46
lines changed

9 files changed

+140
-46
lines changed

lib/std/crypto/25519/curve25519.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ test "curve25519" {
115115
const p = try Curve25519.basePoint.clampedMul(s);
116116
try p.rejectIdentity();
117117
var buf: [128]u8 = undefined;
118-
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{X}", .{p.toBytes()}), "E6F2A4D1C28EE5C7AD0329268255A468AD407D2672824C0C0EB30EA6EF450145");
118+
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{s}", .{std.fmt.fmtSliceHexUpper(&p.toBytes())}), "E6F2A4D1C28EE5C7AD0329268255A468AD407D2672824C0C0EB30EA6EF450145");
119119
const q = try p.clampedMul(s);
120-
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{X}", .{q.toBytes()}), "3614E119FFE55EC55B87D6B19971A9F4CBC78EFE80BEC55B96392BABCC712537");
120+
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{s}", .{std.fmt.fmtSliceHexUpper(&q.toBytes())}), "3614E119FFE55EC55B87D6B19971A9F4CBC78EFE80BEC55B96392BABCC712537");
121121

122122
try Curve25519.rejectNonCanonical(s);
123123
s[31] |= 0x80;

lib/std/crypto/25519/ed25519.zig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,8 @@ test "ed25519 key pair creation" {
210210
_ = try fmt.hexToBytes(seed[0..], "8052030376d47112be7f73ed7a019293dd12ad910b654455798b4667d73de166");
211211
const key_pair = try Ed25519.KeyPair.create(seed);
212212
var buf: [256]u8 = undefined;
213-
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{X}", .{key_pair.secret_key}), "8052030376D47112BE7F73ED7A019293DD12AD910B654455798B4667D73DE1662D6F7455D97B4A3A10D7293909D1A4F2058CB9A370E43FA8154BB280DB839083");
214-
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{X}", .{key_pair.public_key}), "2D6F7455D97B4A3A10D7293909D1A4F2058CB9A370E43FA8154BB280DB839083");
213+
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{s}", .{std.fmt.fmtSliceHexUpper(&key_pair.secret_key)}), "8052030376D47112BE7F73ED7A019293DD12AD910B654455798B4667D73DE1662D6F7455D97B4A3A10D7293909D1A4F2058CB9A370E43FA8154BB280DB839083");
214+
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{s}", .{std.fmt.fmtSliceHexUpper(&key_pair.public_key)}), "2D6F7455D97B4A3A10D7293909D1A4F2058CB9A370E43FA8154BB280DB839083");
215215
}
216216

217217
test "ed25519 signature" {
@@ -221,7 +221,7 @@ test "ed25519 signature" {
221221

222222
const sig = try Ed25519.sign("test", key_pair, null);
223223
var buf: [128]u8 = undefined;
224-
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{X}", .{sig}), "10A442B4A80CC4225B154F43BEF28D2472CA80221951262EB8E0DF9091575E2687CC486E77263C3418C757522D54F84B0359236ABBBD4ACD20DC297FDCA66808");
224+
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{s}", .{std.fmt.fmtSliceHexUpper(&sig)}), "10A442B4A80CC4225B154F43BEF28D2472CA80221951262EB8E0DF9091575E2687CC486E77263C3418C757522D54F84B0359236ABBBD4ACD20DC297FDCA66808");
225225
try Ed25519.verify(sig, "test", key_pair.public_key);
226226
std.testing.expectError(error.InvalidSignature, Ed25519.verify(sig, "TEST", key_pair.public_key));
227227
}

lib/std/crypto/25519/edwards25519.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ test "edwards25519 packing/unpacking" {
450450
var b = Edwards25519.basePoint;
451451
const pk = try b.mul(s);
452452
var buf: [128]u8 = undefined;
453-
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{X}", .{pk.toBytes()}), "074BC7E0FCBD587FDBC0969444245FADC562809C8F6E97E949AF62484B5B81A6");
453+
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{s}", .{std.fmt.fmtSliceHexUpper(&pk.toBytes())}), "074BC7E0FCBD587FDBC0969444245FADC562809C8F6E97E949AF62484B5B81A6");
454454

455455
const small_order_ss: [7][32]u8 = .{
456456
.{

lib/std/crypto/25519/ristretto255.zig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,21 +170,21 @@ pub const Ristretto255 = struct {
170170
test "ristretto255" {
171171
const p = Ristretto255.basePoint;
172172
var buf: [256]u8 = undefined;
173-
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{X}", .{p.toBytes()}), "E2F2AE0A6ABC4E71A884A961C500515F58E30B6AA582DD8DB6A65945E08D2D76");
173+
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{s}", .{std.fmt.fmtSliceHexUpper(&p.toBytes())}), "E2F2AE0A6ABC4E71A884A961C500515F58E30B6AA582DD8DB6A65945E08D2D76");
174174

175175
var r: [Ristretto255.encoded_length]u8 = undefined;
176176
_ = try fmt.hexToBytes(r[0..], "6a493210f7499cd17fecb510ae0cea23a110e8d5b901f8acadd3095c73a3b919");
177177
var q = try Ristretto255.fromBytes(r);
178178
q = q.dbl().add(p);
179-
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{X}", .{q.toBytes()}), "E882B131016B52C1D3337080187CF768423EFCCBB517BB495AB812C4160FF44E");
179+
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{s}", .{std.fmt.fmtSliceHexUpper(&q.toBytes())}), "E882B131016B52C1D3337080187CF768423EFCCBB517BB495AB812C4160FF44E");
180180

181181
const s = [_]u8{15} ++ [_]u8{0} ** 31;
182182
const w = try p.mul(s);
183-
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{X}", .{w.toBytes()}), "E0C418F7C8D9C4CDD7395B93EA124F3AD99021BB681DFC3302A9D99A2E53E64E");
183+
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{s}", .{std.fmt.fmtSliceHexUpper(&w.toBytes())}), "E0C418F7C8D9C4CDD7395B93EA124F3AD99021BB681DFC3302A9D99A2E53E64E");
184184

185185
std.testing.expect(p.dbl().dbl().dbl().dbl().equivalent(w.add(p)));
186186

187187
const h = [_]u8{69} ** 32 ++ [_]u8{42} ** 32;
188188
const ph = Ristretto255.fromUniform(h);
189-
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{X}", .{ph.toBytes()}), "DCCA54E037A4311EFBEEF413ACD21D35276518970B7A61DC88F8587B493D5E19");
189+
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{s}", .{std.fmt.fmtSliceHexUpper(&ph.toBytes())}), "DCCA54E037A4311EFBEEF413ACD21D35276518970B7A61DC88F8587B493D5E19");
190190
}

lib/std/crypto/25519/scalar.zig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -771,10 +771,10 @@ test "scalar25519" {
771771
var y = x.toBytes();
772772
try rejectNonCanonical(y);
773773
var buf: [128]u8 = undefined;
774-
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{X}", .{y}), "1E979B917937F3DE71D18077F961F6CEFF01030405060708010203040506070F");
774+
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{s}", .{std.fmt.fmtSliceHexUpper(&y)}), "1E979B917937F3DE71D18077F961F6CEFF01030405060708010203040506070F");
775775

776776
const reduced = reduce(field_size);
777-
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{X}", .{reduced}), "0000000000000000000000000000000000000000000000000000000000000000");
777+
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{s}", .{std.fmt.fmtSliceHexUpper(&reduced)}), "0000000000000000000000000000000000000000000000000000000000000000");
778778
}
779779

780780
test "non-canonical scalar25519" {
@@ -788,5 +788,5 @@ test "mulAdd overflow check" {
788788
const c: [32]u8 = [_]u8{0xff} ** 32;
789789
const x = mulAdd(a, b, c);
790790
var buf: [128]u8 = undefined;
791-
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{X}", .{x}), "D14DF91389432C25AD60FF9791B9FD1D67BEF517D273ECCE3D9A307C1B419903");
791+
std.testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{s}", .{std.fmt.fmtSliceHexUpper(&x)}), "D14DF91389432C25AD60FF9791B9FD1D67BEF517D273ECCE3D9A307C1B419903");
792792
}

lib/std/crypto/chacha20.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -876,7 +876,7 @@ test "crypto.xchacha20" {
876876
var ciphertext: [input.len]u8 = undefined;
877877
XChaCha20IETF.xor(ciphertext[0..], input[0..], 0, key, nonce);
878878
var buf: [2 * ciphertext.len]u8 = undefined;
879-
testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{X}", .{ciphertext}), "E0A1BCF939654AFDBDC1746EC49832647C19D891F0D1A81FC0C1703B4514BDEA584B512F6908C2C5E9DD18D5CBC1805DE5803FE3B9CA5F193FB8359E91FAB0C3BB40309A292EB1CF49685C65C4A3ADF4F11DB0CD2B6B67FBC174BC2E860E8F769FD3565BBFAD1C845E05A0FED9BE167C240D");
879+
testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{s}", .{std.fmt.fmtSliceHexUpper(&ciphertext)}), "E0A1BCF939654AFDBDC1746EC49832647C19D891F0D1A81FC0C1703B4514BDEA584B512F6908C2C5E9DD18D5CBC1805DE5803FE3B9CA5F193FB8359E91FAB0C3BB40309A292EB1CF49685C65C4A3ADF4F11DB0CD2B6B67FBC174BC2E860E8F769FD3565BBFAD1C845E05A0FED9BE167C240D");
880880
}
881881
{
882882
const data = "Additional data";
@@ -885,7 +885,7 @@ test "crypto.xchacha20" {
885885
var out: [input.len]u8 = undefined;
886886
try xchacha20poly1305Open(out[0..], ciphertext[0..], data, key, nonce);
887887
var buf: [2 * ciphertext.len]u8 = undefined;
888-
testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{X}", .{ciphertext}), "994D2DD32333F48E53650C02C7A2ABB8E018B0836D7175AEC779F52E961780768F815C58F1AA52D211498DB89B9216763F569C9433A6BBFCEFB4D4A49387A4C5207FBB3B5A92B5941294DF30588C6740D39DC16FA1F0E634F7246CF7CDCB978E44347D89381B7A74EB7084F754B90BDE9AAF5A94B8F2A85EFD0B50692AE2D425E234");
888+
testing.expectEqualStrings(try std.fmt.bufPrint(&buf, "{s}", .{std.fmt.fmtSliceHexUpper(&ciphertext)}), "994D2DD32333F48E53650C02C7A2ABB8E018B0836D7175AEC779F52E961780768F815C58F1AA52D211498DB89B9216763F569C9433A6BBFCEFB4D4A49387A4C5207FBB3B5A92B5941294DF30588C6740D39DC16FA1F0E634F7246CF7CDCB978E44347D89381B7A74EB7084F754B90BDE9AAF5A94B8F2A85EFD0B50692AE2D425E234");
889889
testing.expectEqualSlices(u8, out[0..], input);
890890
ciphertext[0] += 1;
891891
testing.expectError(error.AuthenticationFailed, xchacha20poly1305Open(out[0..], ciphertext[0..], data, key, nonce));

lib/std/fmt.zig

Lines changed: 104 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -709,6 +709,87 @@ fn formatFloatValue(
709709
return formatBuf(buf_stream.getWritten(), options, writer);
710710
}
711711

712+
fn formatSliceHexImpl(comptime uppercase: bool) type {
713+
const charset = "0123456789" ++ if (uppercase) "ABCDEF" else "abcdef";
714+
715+
return struct {
716+
pub fn f(
717+
bytes: []const u8,
718+
comptime fmt: []const u8,
719+
options: std.fmt.FormatOptions,
720+
writer: anytype,
721+
) !void {
722+
var buf: [2]u8 = undefined;
723+
724+
for (bytes) |c| {
725+
buf[0] = charset[c >> 4];
726+
buf[1] = charset[c & 15];
727+
try writer.writeAll(&buf);
728+
}
729+
}
730+
};
731+
}
732+
733+
const formatSliceHexLower = formatSliceHexImpl(false).f;
734+
const formatSliceHexUpper = formatSliceHexImpl(true).f;
735+
736+
/// Return a Formatter for a []const u8 where every byte is formatted as a pair
737+
/// of lowercase hexadecimal digits.
738+
pub fn fmtSliceHexLower(bytes: []const u8) std.fmt.Formatter(formatSliceHexLower) {
739+
return .{ .data = bytes };
740+
}
741+
742+
/// Return a Formatter for a []const u8 where every byte is formatted as a pair
743+
/// of uppercase hexadecimal digits.
744+
pub fn fmtSliceHexUpper(bytes: []const u8) std.fmt.Formatter(formatSliceHexUpper) {
745+
return .{ .data = bytes };
746+
}
747+
748+
fn formatSliceEscapeImpl(comptime uppercase: bool) type {
749+
const charset = "0123456789" ++ if (uppercase) "ABCDEF" else "abcdef";
750+
751+
return struct {
752+
pub fn f(
753+
bytes: []const u8,
754+
comptime fmt: []const u8,
755+
options: std.fmt.FormatOptions,
756+
writer: anytype,
757+
) !void {
758+
var buf: [4]u8 = undefined;
759+
760+
buf[0] = '\\';
761+
buf[1] = 'x';
762+
763+
for (bytes) |c| {
764+
if (std.ascii.isPrint(c)) {
765+
try writer.writeByte(c);
766+
} else {
767+
buf[2] = charset[c >> 4];
768+
buf[3] = charset[c & 15];
769+
try writer.writeAll(&buf);
770+
}
771+
}
772+
}
773+
};
774+
}
775+
776+
const formatSliceEscapeLower = formatSliceEscapeImpl(false).f;
777+
const formatSliceEscapeUpper = formatSliceEscapeImpl(true).f;
778+
779+
/// Return a Formatter for a []const u8 where every non-printable ASCII
780+
/// character is escaped as \xNN, where NN is the character in lowercase
781+
/// hexadecimal notation.
782+
pub fn fmtSliceEscapeLower(bytes: []const u8) std.fmt.Formatter(formatSliceEscapeLower) {
783+
return .{ .data = bytes };
784+
}
785+
786+
/// Return a Formatter for a []const u8 where every non-printable ASCII
787+
/// character is escaped as \xNN, where NN is the character in uppercase
788+
/// hexadecimal notation.
789+
pub fn fmtSliceEscapeUpper(bytes: []const u8) std.fmt.Formatter(formatSliceEscapeUpper) {
790+
return .{ .data = bytes };
791+
}
792+
712793
pub fn formatText(
713794
bytes: []const u8,
714795
comptime fmt: []const u8,
@@ -717,21 +798,18 @@ pub fn formatText(
717798
) !void {
718799
if (comptime std.mem.eql(u8, fmt, "s")) {
719800
return formatBuf(bytes, options, writer);
720-
} else if (comptime (std.mem.eql(u8, fmt, "x") or std.mem.eql(u8, fmt, "X"))) {
721-
for (bytes) |c| {
722-
try formatInt(c, 16, fmt[0] == 'X', FormatOptions{ .width = 2, .fill = '0' }, writer);
723-
}
724-
return;
725-
} else if (comptime (std.mem.eql(u8, fmt, "e") or std.mem.eql(u8, fmt, "E"))) {
726-
for (bytes) |c| {
727-
if (std.ascii.isPrint(c)) {
728-
try writer.writeByte(c);
729-
} else {
730-
try writer.writeAll("\\x");
731-
try formatInt(c, 16, fmt[0] == 'E', FormatOptions{ .width = 2, .fill = '0' }, writer);
732-
}
733-
}
734-
return;
801+
} else if (comptime (std.mem.eql(u8, fmt, "x"))) {
802+
@compileError("specifier 'x' has been deprecated, wrap your argument in std.fmt.fmtSliceHexLower instead");
803+
} else if (comptime (std.mem.eql(u8, fmt, "X"))) {
804+
@compileError("specifier 'X' has been deprecated, wrap your argument in std.fmt.fmtSliceHexUpper instead");
805+
} else if (comptime (std.mem.eql(u8, fmt, "e"))) {
806+
@compileError("specifier 'e' has been deprecated, wrap your argument in std.fmt.fmtSliceEscapeLower instead");
807+
} else if (comptime (std.mem.eql(u8, fmt, "E"))) {
808+
@compileError("specifier 'X' has been deprecated, wrap your argument in std.fmt.fmtSliceEscapeUpper instead");
809+
} else if (comptime std.mem.eql(u8, fmt, "z")) {
810+
@compileError("specifier 'z' has been deprecated, wrap your argument in std.zig.fmtId instead");
811+
} else if (comptime std.mem.eql(u8, fmt, "Z")) {
812+
@compileError("specifier 'Z' has been deprecated, wrap your argument in std.zig.fmtEscapes instead");
735813
} else {
736814
@compileError("Unsupported format string '" ++ fmt ++ "' for type '" ++ @typeName(@TypeOf(value)) ++ "'");
737815
}
@@ -1693,9 +1771,9 @@ test "slice" {
16931771
}
16941772

16951773
test "escape non-printable" {
1696-
try expectFmt("abc", "{e}", .{"abc"});
1697-
try expectFmt("ab\\xffc", "{e}", .{"ab\xffc"});
1698-
try expectFmt("ab\\xFFc", "{E}", .{"ab\xffc"});
1774+
try expectFmt("abc", "{s}", .{fmtSliceEscapeLower("abc")});
1775+
try expectFmt("ab\\xffc", "{s}", .{fmtSliceEscapeLower("ab\xffc")});
1776+
try expectFmt("ab\\xFFc", "{s}", .{fmtSliceEscapeUpper("ab\xffc")});
16991777
}
17001778

17011779
test "pointer" {
@@ -1968,13 +2046,13 @@ test "struct.zero-size" {
19682046

19692047
test "bytes.hex" {
19702048
const some_bytes = "\xCA\xFE\xBA\xBE";
1971-
try expectFmt("lowercase: cafebabe\n", "lowercase: {x}\n", .{some_bytes});
1972-
try expectFmt("uppercase: CAFEBABE\n", "uppercase: {X}\n", .{some_bytes});
2049+
try expectFmt("lowercase: cafebabe\n", "lowercase: {x}\n", .{fmtSliceHexLower(some_bytes)});
2050+
try expectFmt("uppercase: CAFEBABE\n", "uppercase: {X}\n", .{fmtSliceHexUpper(some_bytes)});
19732051
//Test Slices
1974-
try expectFmt("uppercase: CAFE\n", "uppercase: {X}\n", .{some_bytes[0..2]});
1975-
try expectFmt("lowercase: babe\n", "lowercase: {x}\n", .{some_bytes[2..]});
2052+
try expectFmt("uppercase: CAFE\n", "uppercase: {X}\n", .{fmtSliceHexUpper(some_bytes[0..2])});
2053+
try expectFmt("lowercase: babe\n", "lowercase: {x}\n", .{fmtSliceHexLower(some_bytes[2..])});
19762054
const bytes_with_zeros = "\x00\x0E\xBA\xBE";
1977-
try expectFmt("lowercase: 000ebabe\n", "lowercase: {x}\n", .{bytes_with_zeros});
2055+
try expectFmt("lowercase: 000ebabe\n", "lowercase: {x}\n", .{fmtSliceHexLower(bytes_with_zeros)});
19782056
}
19792057

19802058
pub const trim = @compileError("deprecated; use std.mem.trim with std.ascii.spaces instead");
@@ -2002,9 +2080,9 @@ pub fn hexToBytes(out: []u8, input: []const u8) ![]u8 {
20022080

20032081
test "hexToBytes" {
20042082
var buf: [32]u8 = undefined;
2005-
try expectFmt("90" ** 32, "{X}", .{try hexToBytes(&buf, "90" ** 32)});
2006-
try expectFmt("ABCD", "{X}", .{try hexToBytes(&buf, "ABCD")});
2007-
try expectFmt("", "{X}", .{try hexToBytes(&buf, "")});
2083+
try expectFmt("90" ** 32, "{s}", .{fmtSliceHexUpper(try hexToBytes(&buf, "90" ** 32))});
2084+
try expectFmt("ABCD", "{s}", .{fmtSliceHexUpper(try hexToBytes(&buf, "ABCD"))});
2085+
try expectFmt("", "{s}", .{fmtSliceHexUpper(try hexToBytes(&buf, ""))});
20082086
std.testing.expectError(error.InvalidCharacter, hexToBytes(&buf, "012Z"));
20092087
std.testing.expectError(error.InvalidLength, hexToBytes(&buf, "AAA"));
20102088
std.testing.expectError(error.NoSpaceLeft, hexToBytes(buf[0..1], "ABAB"));

src/Cache.zig

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,11 @@ pub const HashHelper = struct {
153153
hh.hasher.final(&bin_digest);
154154

155155
var out_digest: [hex_digest_len]u8 = undefined;
156-
_ = std.fmt.bufPrint(&out_digest, "{x}", .{bin_digest}) catch unreachable;
156+
_ = std.fmt.bufPrint(
157+
&out_digest,
158+
"{s}",
159+
.{std.fmt.fmtSliceHexLower(&bin_digest)},
160+
) catch unreachable;
157161
return out_digest;
158162
}
159163
};
@@ -250,7 +254,11 @@ pub const Manifest = struct {
250254
var bin_digest: BinDigest = undefined;
251255
self.hash.hasher.final(&bin_digest);
252256

253-
_ = std.fmt.bufPrint(&self.hex_digest, "{x}", .{bin_digest}) catch unreachable;
257+
_ = std.fmt.bufPrint(
258+
&self.hex_digest,
259+
"{s}",
260+
.{std.fmt.fmtSliceHexLower(&bin_digest)},
261+
) catch unreachable;
254262

255263
self.hash.hasher = hasher_init;
256264
self.hash.hasher.update(&bin_digest);
@@ -549,7 +557,11 @@ pub const Manifest = struct {
549557
self.hash.hasher.final(&bin_digest);
550558

551559
var out_digest: [hex_digest_len]u8 = undefined;
552-
_ = std.fmt.bufPrint(&out_digest, "{x}", .{bin_digest}) catch unreachable;
560+
_ = std.fmt.bufPrint(
561+
&out_digest,
562+
"{s}",
563+
.{std.fmt.fmtSliceHexLower(&bin_digest)},
564+
) catch unreachable;
553565

554566
return out_digest;
555567
}
@@ -565,7 +577,11 @@ pub const Manifest = struct {
565577
var encoded_digest: [hex_digest_len]u8 = undefined;
566578

567579
for (self.files.items) |file| {
568-
_ = std.fmt.bufPrint(&encoded_digest, "{x}", .{file.bin_digest}) catch unreachable;
580+
_ = std.fmt.bufPrint(
581+
&encoded_digest,
582+
"{s}",
583+
.{std.fmt.fmtSliceHexLower(&file.bin_digest)},
584+
) catch unreachable;
569585
try writer.print("{d} {d} {d} {s} {s}\n", .{
570586
file.stat.size,
571587
file.stat.inode,

src/translate_c.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4608,7 +4608,7 @@ fn parseCPrimaryExprInner(c: *Context, m: *MacroCtx, scope: *Scope) ParseError!N
46084608
if (slice[0] != '\'' or slice[1] == '\\' or slice.len == 3) {
46094609
return Tag.char_literal.create(c.arena, try zigifyEscapeSequences(c, m));
46104610
} else {
4611-
const str = try std.fmt.allocPrint(c.arena, "0x{x}", .{slice[1 .. slice.len - 1]});
4611+
const str = try std.fmt.allocPrint(c.arena, "0x{s}", .{std.fmt.fmtSliceHexLower(slice[1 .. slice.len - 1])});
46124612
return Tag.integer_literal.create(c.arena, str);
46134613
}
46144614
},

0 commit comments

Comments
 (0)