zig/std/crypto/test.zig

23 lines
778 B
Zig
Raw Normal View History

const std = @import("../index.zig");
const testing = std.testing;
const mem = std.mem;
const fmt = std.fmt;
2018-01-16 19:20:20 +08:00
// Hash using the specified hasher `H` asserting `expected == H(input)`.
pub fn assertEqualHash(comptime Hasher: var, comptime expected: []const u8, input: []const u8) void {
2018-01-16 19:20:20 +08:00
var h: [expected.len / 2]u8 = undefined;
Hasher.hash(input, h[0..]);
assertEqual(expected, h);
}
// Assert `expected` == `input` where `input` is a bytestring.
pub fn assertEqual(comptime expected: []const u8, input: []const u8) void {
2018-01-16 19:20:20 +08:00
var expected_bytes: [expected.len / 2]u8 = undefined;
for (expected_bytes) |*r, i| {
2018-05-31 04:09:11 +08:00
r.* = fmt.parseInt(u8, expected[2 * i .. 2 * i + 2], 16) catch unreachable;
2018-01-16 19:20:20 +08:00
}
testing.expectEqualSlices(u8, expected_bytes, input);
2018-01-16 19:20:20 +08:00
}