Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for sumGeneric (0.14 seconds)

  1. lib/fips140/v1.26.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...
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Jan 08 17:58:32 GMT 2026
    - 660.3K bytes
    - Click Count (0)
  2. lib/fips140/v1.0.0-c2097c7c.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...
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Sep 25 19:53:19 GMT 2025
    - 642.7K bytes
    - Click Count (0)
Back to Top