NewTupleHashXOF256 provides an arbitrary-length output.
(s []byte)
| 85 | |
| 86 | // NewTupleHashXOF256 provides an arbitrary-length output. |
| 87 | func NewTupleHashXOF256(s []byte) TupleHashXOF { |
| 88 | return newTupleHasher(256, 0, s) |
| 89 | } |
| 90 | |
| 91 | // BlockSize returns the rate of sponge underlying this hash function. |
| 92 | func (t *thash) BlockSize() int { return t.d.rate } |
nothing calls this directly
no test coverage detected