1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Typo in PKCS#11 module

This commit is contained in:
Paul Bakker
2014-04-25 11:44:12 +02:00
parent 10a9dd35ea
commit 4ffcd2f9c3
2 changed files with 3 additions and 2 deletions

View File

@ -189,7 +189,7 @@ int pkcs11_sign( pkcs11_context *ctx,
}
sig_len = ctx->len;
if ( hashlen > ctx_len || asn_len > sig_len ||
if ( hashlen > sig_len || asn_len > sig_len ||
hashlen + asn_len > sig_len )
{
return( POLARSSL_ERR_RSA_BAD_INPUT_DATA );