Switch CAVP testing for AES-GCM to use external nonces.

Change-Id: I5a46917695d28b98cb274573d427126a2e8f7879
Reviewed-on: https://boringssl-review.googlesource.com/16724
Reviewed-by: Adam Langley <agl@google.com>
Commit-Queue: Adam Langley <agl@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
diff --git a/fipstools/run_cavp.go b/fipstools/run_cavp.go
index ffcbdd8..92ddc1b 100644
--- a/fipstools/run_cavp.go
+++ b/fipstools/run_cavp.go
@@ -58,8 +58,8 @@
 	[]test{
 		{"gcmDecrypt128", []string{"dec", "aes-128-gcm"}, false},
 		{"gcmDecrypt256", []string{"dec", "aes-256-gcm"}, false},
-		{"gcmEncryptIntIV128", []string{"enc", "aes-128-gcm"}, true},
-		{"gcmEncryptIntIV256", []string{"enc", "aes-256-gcm"}, true},
+		{"gcmEncryptExtIV128", []string{"enc", "aes-128-gcm"}, false},
+		{"gcmEncryptExtIV256", []string{"enc", "aes-256-gcm"}, false},
 	},
 }