aboutsummaryrefslogtreecommitdiff
path: root/internal/stupidgcm/stupidgcm_test.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2016-09-25 19:48:21 +0200
committerJakob Unterwurzacher2016-09-25 19:48:21 +0200
commit5f4b16c00f2475a8efd0ae0d4d4e26f92b563dc0 (patch)
tree5b9a65d94c3cc58c032e731ea4cb776947b30ebd /internal/stupidgcm/stupidgcm_test.go
parent166ba74a053898a52ff2e48125c1df97f35a85fd (diff)
Implement changes proposed by gosimple.
Also delete the unused "dirIVNameStruct", found by deadcode.
Diffstat (limited to 'internal/stupidgcm/stupidgcm_test.go')
-rw-r--r--internal/stupidgcm/stupidgcm_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/stupidgcm/stupidgcm_test.go b/internal/stupidgcm/stupidgcm_test.go
index 82516b3..b0e25ab 100644
--- a/internal/stupidgcm/stupidgcm_test.go
+++ b/internal/stupidgcm/stupidgcm_test.go
@@ -52,7 +52,7 @@ func TestEncryptDecrypt(t *testing.T) {
gOut := gGCM.Seal(dst, iv, in, authData)
// Ciphertext must be identical to Go GCM
- if bytes.Compare(sOut, gOut) != 0 {
+ if !bytes.Equal(sOut, gOut) {
t.Fatalf("Compare failed for encryption, size %d", i)
t.Log("sOut:")
t.Log("\n" + hex.Dump(sOut))
@@ -70,7 +70,7 @@ func TestEncryptDecrypt(t *testing.T) {
}
// Plaintext must be identical to Go GCM
- if bytes.Compare(sOut2, gOut2) != 0 {
+ if !bytes.Equal(sOut2, gOut2) {
t.Fatalf("Compare failed for decryption, size %d", i)
}
}
@@ -90,7 +90,7 @@ func TestCorruption(t *testing.T) {
if sErr != nil {
t.Fatal(sErr)
}
- if bytes.Compare(in, sOut2) != 0 {
+ if !bytes.Equal(in, sOut2) {
t.Fatalf("Compare failed")
}