Git object hashing primitives (gix-hash equivalent)
Dependencies
pub struct Sha1State {
h : FixedArray[Int]
block : FixedArray[Byte]
w : FixedArray[Int]
block_len : Int
total_len : Int64
}pub struct Sha256State {
h : FixedArray[Int]
block : FixedArray[Byte]
w : FixedArray[Int]
block_len : Int
total_len : Int64
}fn hex_encode(raw : FixedArray[Byte]) -> Stringfn hmac_sha256_bytes(key : Bytes, msg : Bytes) -> Bytesfn hmac_sha256_raw(key : Bytes, msg : Bytes) -> FixedArray[Byte]Install
Download zipGit object hashing primitives (gix-hash equivalent)
Dependencies