From 653297025c5195c9f0f57c19efb31ff95bedc042 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20S=C3=A4nger?= Date: Fri, 18 Jan 2019 20:09:57 +0100 Subject: [PATCH] use sha256-simd --- meta.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta.go b/meta.go index 10cd4e1..2fc7b81 100644 --- a/meta.go +++ b/meta.go @@ -5,7 +5,6 @@ import ( "archive/zip" "compress/bzip2" "compress/gzip" - "crypto/sha256" "encoding/hex" "errors" "io" @@ -16,6 +15,7 @@ import ( "github.com/andreimarcu/linx-server/backends" "github.com/andreimarcu/linx-server/expiry" "github.com/dchest/uniuri" + "github.com/minio/sha256-simd" "gopkg.in/h2non/filetype.v1" )