Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/deatil/zig-md4
A MD4 hash function library for Zig
https://github.com/deatil/zig-md4
md4 zig zig-md4
Last synced: about 1 month ago
JSON representation
A MD4 hash function library for Zig
- Host: GitHub
- URL: https://github.com/deatil/zig-md4
- Owner: deatil
- License: apache-2.0
- Created: 2024-05-18T04:51:42.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-30T13:11:44.000Z (9 months ago)
- Last Synced: 2024-11-11T20:26:29.225Z (3 months ago)
- Topics: md4, zig, zig-md4
- Language: Zig
- Homepage: https://github.com/deatil/zig-md4
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-zig - deatil/zig-md4
- awesome-zig - zig-md4🗒️A MD4 hash function for Zig
README
## Zig-MD4
zig-md4 is a MD4 hash function for Zig.
### Env
- Zig >= 0.12
### Get Starting
~~~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});
}
~~~### LICENSE
* The library LICENSE is `Apache2`, using the library need keep the LICENSE.
### Copyright
* Copyright deatil(https://github.com/deatil).