Lindenii Project Forge
Login

hare-git

Git library for Hare (BROKEN)
Commit info
ID
4fd73c5ef3c04986dd57e9b1e7ed7ded68e57c93
Author
Runxi Yu <me@runxiyu.org>
Author date
Fri, 14 Mar 2025 09:19:42 +0800
Committer
Runxi Yu <me@runxiyu.org>
Committer date
Fri, 14 Mar 2025 09:19:42 +0800
Actions
Add oid, oid_sha1, oid_sha256
use crypto::sha1;
use crypto::sha256;

export type oid = (oid_sha1 | oid_sha256);
export type oid_sha1 = [sha1::SZ]u8;
export type oid_sha256 = [sha256::SZ]u8;