Commit 3ac0f288 authored by Richard Levitte's avatar Richard Levitte
Browse files

Make sure that the buffers are large enough to contain padding.

PR: 904
parent 47c1735a
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -253,7 +253,11 @@
#endif

#undef BUFSIZE
#define BUFSIZE	((long)1024*8+1)
/* BUFSIZE needs to be one cipherblock larger than the largest number in the
   lengths array (see below), to make space for padding when doing EVP tests.
   1024 extra bytes may seem much, but hey, it doesn't hurt!
							-- Richard Levitte */
#define BUFSIZE	((long)1024*9+1)
int run=0;

static char ftime_used = 0, times_used = 0, gettimeofday_used = 0, getrusage_used = 0;