summaryrefslogtreecommitdiffstats
path: root/fips/aes
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-04-22 00:41:35 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-04-22 00:41:35 +0000
commitbef5013961cb2e6344fdd695ff5a92b1e2527329 (patch)
tree0f8f8a5293ef3c9455613061749a383215123793 /fips/aes
parent79170bc97a0a927ef24b192b51bf316f8660f8e3 (diff)
Rewrite OutputValue to avoid use of buffer when printing out hex values.
Delete unused functions from fips_utl.h. Increase xts line buffer.
Diffstat (limited to 'fips/aes')
-rw-r--r--fips/aes/fips_gcmtest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fips/aes/fips_gcmtest.c b/fips/aes/fips_gcmtest.c
index 438014ff14..772783e8a5 100644
--- a/fips/aes/fips_gcmtest.c
+++ b/fips/aes/fips_gcmtest.c
@@ -265,8 +265,8 @@ static void gcmtest(FILE *in, FILE *out, int encrypt)
static void xtstest(FILE *in, FILE *out)
{
- char buf[2048];
- char lbuf[2048];
+ char buf[204800];
+ char lbuf[204800];
char *keyword, *value;
int inlen;
int encrypt = 0;