neoneo-go/pkg/crypto/rfc6979
Roman Khimov 06f9e1d123 pkg/(crypto|vm): fix GolangCI errcheck warnings
Like:
  Error return value of alg.Write is not checked (from errcheck)

Actually even though the hash.Hash implements an io.Writer interface (that
return meaningful things on .Write()) it has this comment in its
documentation:

// Write (via the embedded io.Writer interface) adds more data to the running hash.
// It never returns an error.

so it should be OK to ignore return results here.
2019-08-12 16:36:06 +03:00
..
dsa.go Initial commit 2019-02-25 22:44:14 +00:00
dsa_test.go Initial commit 2019-02-25 22:44:14 +00:00
ecdsa.go Initial commit 2019-02-25 22:44:14 +00:00
ecdsa_test.go Initial commit 2019-02-25 22:44:14 +00:00
example_test.go pkg/(crypto|vm): fix GolangCI errcheck warnings 2019-08-12 16:36:06 +03:00
LICENSE Initial commit 2019-02-25 22:44:14 +00:00
rfc6979.go Initial commit 2019-02-25 22:44:14 +00:00
rfc6979_test.go Initial commit 2019-02-25 22:44:14 +00:00