Implement md5c function, slower than Golang's implementation

keeping it in repo to make further improvements and also rename

        minio-hash ---> crypto
This commit is contained in:
Harshavardhana
2014-12-21 02:12:30 -08:00
parent 958890276d
commit 13650e088c
11 changed files with 449 additions and 17 deletions
+23
View File
@@ -0,0 +1,23 @@
package md5c
import (
"bytes"
"encoding/hex"
"testing"
. "gopkg.in/check.v1"
)
func Test(t *testing.T) { TestingT(t) }
type MySuite struct{}
var _ = Suite(&MySuite{})
func (s *MySuite) TestMd5sum(c *C) {
testString := []byte("Test string")
expectedHash, _ := hex.DecodeString("0fd3dbec9730101bff92acc820befc34")
hash, err := Sum(bytes.NewBuffer(testString))
c.Assert(err, IsNil)
c.Assert(bytes.Equal(expectedHash, hash), Equals, true)
}