| 558 | const maxOtherDigestLen = 128 |
| 559 | |
| 560 | type otherDigest struct { |
| 561 | name string |
| 562 | sum [maxOtherDigestLen]byte |
| 563 | sumLen int // bytes in sum that are valid |
| 564 | odd bool // odd number of hex digits in input |
| 565 | } |
| 566 | |
| 567 | func (d otherDigest) digestName() string { return d.name } |
| 568 | func (d otherDigest) bytes() []byte { return d.sum[:d.sumLen] } |
nothing calls this directly
no outgoing calls
no test coverage detected