added error message in case of incorrect padding

This commit is contained in:
Andreas Steffen
2007-10-07 21:42:38 +00:00
parent 2f5199ec48
commit e1513577fb
@@ -19,6 +19,8 @@
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details. * for more details.
*
* RCSID $Id$
*/ */
#include <gmp.h> #include <gmp.h>
@@ -168,6 +170,7 @@ static status_t verify_emsa_pkcs1_signature(const private_rsa_public_key_t *this
/* check magic bytes */ /* check magic bytes */
if (*(em.ptr) != 0x00 || *(em.ptr+1) != 0x01) if (*(em.ptr) != 0x00 || *(em.ptr+1) != 0x01)
{ {
DBG1("incorrect padding - probably wrong RSA key");
goto end; goto end;
} }
em.ptr += 2; em.ptr += 2;