mirror of
https://github.com/pgsty/minio.git
synced 2026-08-11 00:33:28 +03:00
Adding minio-hash with streaming crypto hashes
This commit is contained in:
@@ -23,9 +23,12 @@ package sha1
|
||||
// void sha1_transform(int32_t *hash, const char* input, size_t num_blocks);
|
||||
import "C"
|
||||
import (
|
||||
gosha1 "crypto/sha1"
|
||||
"errors"
|
||||
"github.com/minio-io/minio/pkgs/cpu"
|
||||
"io"
|
||||
"unsafe"
|
||||
|
||||
"github.com/minio-io/minio/pkgs/cpu"
|
||||
)
|
||||
|
||||
const (
|
||||
@@ -69,3 +72,19 @@ func Sha1(buffer []byte) ([]int32, error) {
|
||||
|
||||
return shbuf, nil
|
||||
}
|
||||
|
||||
func Sum(reader io.Reader) ([]byte, error) {
|
||||
hash := gosha1.New()
|
||||
var err error
|
||||
for err == nil {
|
||||
length := 0
|
||||
byteBuffer := make([]byte, 1024*1024)
|
||||
length, err = reader.Read(byteBuffer)
|
||||
byteBuffer = byteBuffer[0:length]
|
||||
hash.Write(byteBuffer)
|
||||
}
|
||||
if err != io.EOF {
|
||||
return nil, err
|
||||
}
|
||||
return hash.Sum(nil), nil
|
||||
}
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
package sha1
|
||||
|
||||
import (
|
||||
. "gopkg.in/check.v1"
|
||||
"bytes"
|
||||
"encoding/hex"
|
||||
"testing"
|
||||
|
||||
. "gopkg.in/check.v1"
|
||||
)
|
||||
|
||||
func Test(t *testing.T) { TestingT(t) }
|
||||
@@ -24,3 +27,11 @@ func (s *MySuite) TestSha1(c *C) {
|
||||
|
||||
c.Assert(sha, DeepEquals, newsha)
|
||||
}
|
||||
|
||||
func (s *MySuite) TestStreamingSha1(c *C) {
|
||||
testString := []byte("Test string")
|
||||
expectedHash, _ := hex.DecodeString("18af819125b70879d36378431c4e8d9bfa6a2599")
|
||||
hash, err := Sum(bytes.NewBuffer(testString))
|
||||
c.Assert(err, IsNil)
|
||||
c.Assert(bytes.Equal(expectedHash, hash), Equals, true)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user