diff options
| author | Shawn Smith <shawn.p.smith@gmail.com> | 2014-01-01 07:46:00 +1100 |
|---|---|---|
| committer | Dave Cheney <dave@cheney.net> | 2014-01-01 07:46:00 +1100 |
| commit | e3040e2bbaeb064cd728d4bf78006a9f85036f63 (patch) | |
| tree | a2a82bd69d3d9ee3f889eeee03d3055de09313dd /src/pkg/crypto | |
| parent | 8f3fc547d0d658a13149dd7e504087b21defddee (diff) | |
| download | go-e3040e2bbaeb064cd728d4bf78006a9f85036f63.tar.xz | |
crypto/sha256: add tests for Size() and BlockSize()
R=golang-codereviews, dave
CC=golang-codereviews
https://golang.org/cl/46470043
Diffstat (limited to 'src/pkg/crypto')
| -rw-r--r-- | src/pkg/crypto/sha256/sha256_test.go | 18 |
1 files changed, 18 insertions, 0 deletions
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) |
