From: Shawn Smith Date: Tue, 31 Dec 2013 20:46:00 +0000 (+1100) Subject: crypto/sha256: add tests for Size() and BlockSize() X-Git-Tag: go1.3beta1~1080 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e3040e2bbaeb064cd728d4bf78006a9f85036f63;p=gostls13.git crypto/sha256: add tests for Size() and BlockSize() R=golang-codereviews, dave CC=golang-codereviews https://golang.org/cl/46470043 --- diff --git a/src/pkg/crypto/sha256/sha256_test.go b/src/pkg/crypto/sha256/sha256_test.go index bb1ec3b162..1d883d3905 100644 --- a/src/pkg/crypto/sha256/sha256_test.go +++ b/src/pkg/crypto/sha256/sha256_test.go @@ -132,6 +132,24 @@ func TestGolden(t *testing.T) { } } +func TestSize(t *testing.T) { + c := New() + if got := c.Size(); got != Size { + t.Errorf("Size = %d; want %d", got, Size) + } + c = New224() + if got := c.Size(); got != Size224 { + t.Errorf("New224.Size = %d; want %d", got, Size224) + } +} + +func TestBlockSize(t *testing.T) { + c := New() + if got := c.BlockSize(); got != BlockSize { + t.Errorf("BlockSize = %d want %d", got, BlockSize) + } +} + var bench = New() var buf = make([]byte, 8192)