(b []byte)
| 583 | func (c *cthWrapper) Reset() { c.h.Reset() } |
| 584 | func (c *cthWrapper) Write(p []byte) (int, error) { return c.h.Write(p) } |
| 585 | func (c *cthWrapper) Sum(b []byte) []byte { return c.h.ConstantTimeSum(b) } |
| 586 | |
| 587 | func newConstantTimeHash(h func() hash.Hash) func() hash.Hash { |
| 588 | return func() hash.Hash { |
no test coverage detected