From e8ef24dc868ec4252153f129ea862b6ab0d1884b Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Thu, 3 Jan 2008 13:46:46 +0000 Subject: [PATCH] Suppress debug output from AES algorithm test. --- fips-1.0/aes/fips_aesavs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fips-1.0/aes/fips_aesavs.c b/fips-1.0/aes/fips_aesavs.c index af7874970c..6aa358f8ef 100644 --- a/fips-1.0/aes/fips_aesavs.c +++ b/fips-1.0/aes/fips_aesavs.c @@ -811,7 +811,8 @@ int proc_file(char *rqfile, char *rspfile) else if (strncasecmp(pp, "Key Length : ", 13) == 0) { akeysz = atoi(pp+13); - printf("Key size = %d\n", akeysz); + if (VERBOSE) + printf("Key size = %d\n", akeysz); } } } -- 2.25.1