Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for sumGeneric (0.72 sec)

  1. lib/fips140/v1.0.0.zip

    x out = out[x:] } return } // Sum appends the current hash to b and returns the resulting slice. // It does not change the underlying hash state. func (d *Digest) Sum(b []byte) []byte { fips140.RecordApproved() return d.sum(b) } func (d *Digest) sumGeneric(b []byte) []byte { if d.state != spongeAbsorbing { panic("sha3: Sum after Read") } // Make a copy of the original hash so that caller can keep writing // and summing. dup := d.Clone() hash := make([]byte, dup.outputLen, 64) // explicit cap to allow...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top