Use the correct length (reported by Quanhong Wang).
This commit is contained in:
parent
98448a53c8
commit
1eee8a4226
1 changed files with 5 additions and 5 deletions
|
@ -220,18 +220,18 @@ static void test1(const EVP_CIPHER *c,const unsigned char *key,int kn,
|
|||
test1_exit(7);
|
||||
}
|
||||
|
||||
if(outl+outl2 != cn)
|
||||
if(outl+outl2 != pn)
|
||||
{
|
||||
fprintf(stderr,"Plaintext length mismatch got %d expected %d\n",
|
||||
outl+outl2,cn);
|
||||
outl+outl2,pn);
|
||||
test1_exit(8);
|
||||
}
|
||||
|
||||
if(memcmp(out,plaintext,cn))
|
||||
if(memcmp(out,plaintext,pn))
|
||||
{
|
||||
fprintf(stderr,"Plaintext mismatch\n");
|
||||
hexdump(stderr,"Got",out,cn);
|
||||
hexdump(stderr,"Expected",plaintext,cn);
|
||||
hexdump(stderr,"Got",out,pn);
|
||||
hexdump(stderr,"Expected",plaintext,pn);
|
||||
test1_exit(9);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue