11 lines
168 B
Go
Raw Normal View History

2016-12-06 11:03:42 +01:00
package serial
2016-12-09 13:17:34 +01:00
import "hash"
2016-12-09 11:35:27 +01:00
2016-12-09 13:17:34 +01:00
func WriteHash(h hash.Hash) func([]byte) (int, error) {
2016-12-09 12:08:25 +01:00
return func(b []byte) (int, error) {
2016-12-06 11:03:42 +01:00
h.Sum(b[:0])
2016-12-09 12:08:25 +01:00
return h.Size(), nil
2016-12-06 11:03:42 +01:00
}
}