summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2008-01-03 13:46:46 +0000
committerDr. Stephen Henson <steve@openssl.org>2008-01-03 13:46:46 +0000
commite8ef24dc868ec4252153f129ea862b6ab0d1884b (patch)
treecc17f6c63e0d748ebbb16c25cef0fe5f6a03cb79
parent8b6d0dc2086272c70f13de6a0b944d3b7f6c7ad3 (diff)
downloadopenssl-new-e8ef24dc868ec4252153f129ea862b6ab0d1884b.tar.gz
Suppress debug output from AES algorithm test.
-rw-r--r--fips-1.0/aes/fips_aesavs.c3
1 files changed, 2 insertions, 1 deletions
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);
}
}
}