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
}Git object hashing primitives (gix-hash equivalent)
Dependencies