Home
last modified time | relevance | path

Searched defs:cthWrapper (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/crypto/tls/
Dcipher_suites.go586 type cthWrapper struct { struct
587 h constantTimeHash member
590 func (c *cthWrapper) Size() int { return c.h.Size() }
591 func (c *cthWrapper) BlockSize() int { return c.h.BlockSize() }
592 func (c *cthWrapper) Reset() { c.h.Reset() }
593 func (c *cthWrapper) Write(p []byte) (int, error) { return c.h.Write(p) }
594 func (c *cthWrapper) Sum(b []byte) []byte { return c.h.ConstantTimeSum(b) }