deatil/zig-md4
A MD4 hash function library for Zig
zig-md4 is a MD4 hash function for Zig.
const std = @import("std");
const MD4 = @import("zig-md4").MD4;
pub fn main() !void {
var out: [16]u8 = undefined;
h = MD4.init(.{});
h.update("abc");
h.final(out[0..]);
// output: a448017aaf21d8525fc10ae87aa6729d
std.debug.print("output: {s}\n", .{out});
}
Apache2
, using the library need keep the LICENSE.