P, not T.

This commit is contained in:
Ben Laurie 2004-04-28 10:20:21 +00:00
parent 8343bcfb2b
commit ccabc6f49a

View File

@ -267,7 +267,7 @@ void sigver()
pbn("R",sig->r); pbn("R",sig->r);
pbn("S",sig->s); pbn("S",sig->s);
printf("Result = %c\n",DSA_do_verify(hash,sizeof hash,sig,dsa) printf("Result = %c\n",DSA_do_verify(hash,sizeof hash,sig,dsa)
? 'T' : 'F'); ? 'P' : 'F');
putc('\n',stdout); putc('\n',stdout);
} }
} }