(h crypto.Hash, data []byte)
| 202 | } |
| 203 | |
| 204 | func hash(h crypto.Hash, data []byte) []byte { |
| 205 | v := h.New() |
| 206 | v.Write(data) |
| 207 | return v.Sum(nil) |
| 208 | } |
| 209 | |
| 210 | func rsaHash(ctx *cli.Context) (crypto.SignerOpts, error) { |
| 211 | var h crypto.Hash |
no outgoing calls
no test coverage detected
searching dependent graphs…