(s string)
| 12 | ) |
| 13 | |
| 14 | func unhexlify(s string) []byte { |
| 15 | bytes, err := hex.DecodeString(s) |
| 16 | if err != nil { |
| 17 | panic(err) |
| 18 | } |
| 19 | return bytes |
| 20 | } |
| 21 | |
| 22 | type vectorArgs struct { |
| 23 | count string |
no outgoing calls
no test coverage detected
searching dependent graphs…