From: Mark Wooding Date: Sat, 13 May 2006 12:05:01 +0000 (+0100) Subject: catcrypt: Increase encryption buffer to 64K. X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/commitdiff_plain/188f51de59331328a5e8963aa06d6fc47ad4fcf3 catcrypt: Increase encryption buffer to 64K. No reason not to, really. --- diff --git a/catcrypt.c b/catcrypt.c index 8468552..cbbf694 100644 --- a/catcrypt.c +++ b/catcrypt.c @@ -138,7 +138,7 @@ static int encrypt(int argc, char *argv[]) octet *tag, *ct; buf b; size_t seq; - char bb[16384]; + char bb[65536]; unsigned f = 0; key_file kf; key *k;