diff options
Diffstat (limited to 'pkg/hashio/hashio.go')
-rw-r--r-- | pkg/hashio/hashio.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/hashio/hashio.go b/pkg/hashio/hashio.go index d97948850..e0e8ef413 100644 --- a/pkg/hashio/hashio.go +++ b/pkg/hashio/hashio.go @@ -37,11 +37,12 @@ passed hash verification. Hence the client code can safely do any kind of package hashio import ( - "crypto/hmac" "errors" "hash" "io" "sync" + + "crypto/hmac" ) // SegmentSize is the unit we split payload data and insert hash at. |