mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-23 12:55:30 +00:00
- Rewrote sign and verify tests to handle missing algorithm definitions
This commit is contained in:
parent
46b8071641
commit
76791f7c32
|
@ -1,4 +1,5 @@
|
||||||
BEGIN_HEADER
|
BEGIN_HEADER
|
||||||
|
#include <polarssl/config.h>
|
||||||
#include <polarssl/rsa.h>
|
#include <polarssl/rsa.h>
|
||||||
#include <polarssl/md2.h>
|
#include <polarssl/md2.h>
|
||||||
#include <polarssl/md4.h>
|
#include <polarssl/md4.h>
|
||||||
|
@ -47,22 +48,45 @@ rsa_pkcs1_sign:message_hex_string:padding_mode:digest:mod:radix_P:input_P:radix_
|
||||||
|
|
||||||
msg_len = unhexify( message_str, {message_hex_string} );
|
msg_len = unhexify( message_str, {message_hex_string} );
|
||||||
|
|
||||||
if( {digest} == SIG_RSA_MD2 )
|
switch( {digest} )
|
||||||
|
{
|
||||||
|
#ifdef POLARSSL_MD2_C
|
||||||
|
case SIG_RSA_MD2:
|
||||||
md2( message_str, msg_len, hash_result );
|
md2( message_str, msg_len, hash_result );
|
||||||
else if( {digest} == SIG_RSA_MD4 )
|
break;
|
||||||
|
#endif
|
||||||
|
#ifdef POLARSSL_MD4_C
|
||||||
|
case SIG_RSA_MD4:
|
||||||
md4( message_str, msg_len, hash_result );
|
md4( message_str, msg_len, hash_result );
|
||||||
else if( {digest} == SIG_RSA_MD5 )
|
break;
|
||||||
|
#endif
|
||||||
|
#ifdef POLARSSL_MD5_C
|
||||||
|
case SIG_RSA_MD5:
|
||||||
md5( message_str, msg_len, hash_result );
|
md5( message_str, msg_len, hash_result );
|
||||||
else if( {digest} == SIG_RSA_SHA1 )
|
break;
|
||||||
|
#endif
|
||||||
|
#ifdef POLARSSL_SHA1_C
|
||||||
|
case SIG_RSA_SHA1:
|
||||||
sha1( message_str, msg_len, hash_result );
|
sha1( message_str, msg_len, hash_result );
|
||||||
else if( {digest} == SIG_RSA_SHA224 )
|
break;
|
||||||
|
#endif
|
||||||
|
#ifdef POLARSSL_SHA2_C
|
||||||
|
case SIG_RSA_SHA224:
|
||||||
sha2( message_str, msg_len, hash_result, 1 );
|
sha2( message_str, msg_len, hash_result, 1 );
|
||||||
else if( {digest} == SIG_RSA_SHA256 )
|
break;
|
||||||
|
case SIG_RSA_SHA256:
|
||||||
sha2( message_str, msg_len, hash_result, 0 );
|
sha2( message_str, msg_len, hash_result, 0 );
|
||||||
else if( {digest} == SIG_RSA_SHA384 )
|
break;
|
||||||
|
#endif
|
||||||
|
#ifdef POLARSSL_SHA4_C
|
||||||
|
case SIG_RSA_SHA384:
|
||||||
sha4( message_str, msg_len, hash_result, 1 );
|
sha4( message_str, msg_len, hash_result, 1 );
|
||||||
else if( {digest} == SIG_RSA_SHA512 )
|
break;
|
||||||
|
case SIG_RSA_SHA512:
|
||||||
sha4( message_str, msg_len, hash_result, 0 );
|
sha4( message_str, msg_len, hash_result, 0 );
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
TEST_ASSERT( rsa_pkcs1_sign( &ctx, RSA_PRIVATE, {digest}, 0, hash_result, output ) == {result} );
|
TEST_ASSERT( rsa_pkcs1_sign( &ctx, RSA_PRIVATE, {digest}, 0, hash_result, output ) == {result} );
|
||||||
if( {result} == 0 )
|
if( {result} == 0 )
|
||||||
|
@ -97,22 +121,45 @@ rsa_pkcs1_verify:message_hex_string:padding_mode:digest:mod:radix_N:input_N:radi
|
||||||
msg_len = unhexify( message_str, {message_hex_string} );
|
msg_len = unhexify( message_str, {message_hex_string} );
|
||||||
unhexify( result_str, {result_hex_str} );
|
unhexify( result_str, {result_hex_str} );
|
||||||
|
|
||||||
if( {digest} == SIG_RSA_MD2 )
|
switch( {digest} )
|
||||||
|
{
|
||||||
|
#ifdef POLARSSL_MD2_C
|
||||||
|
case SIG_RSA_MD2:
|
||||||
md2( message_str, msg_len, hash_result );
|
md2( message_str, msg_len, hash_result );
|
||||||
else if( {digest} == SIG_RSA_MD4 )
|
break;
|
||||||
|
#endif
|
||||||
|
#ifdef POLARSSL_MD4_C
|
||||||
|
case SIG_RSA_MD4:
|
||||||
md4( message_str, msg_len, hash_result );
|
md4( message_str, msg_len, hash_result );
|
||||||
else if( {digest} == SIG_RSA_MD5 )
|
break;
|
||||||
|
#endif
|
||||||
|
#ifdef POLARSSL_MD5_C
|
||||||
|
case SIG_RSA_MD5:
|
||||||
md5( message_str, msg_len, hash_result );
|
md5( message_str, msg_len, hash_result );
|
||||||
else if( {digest} == SIG_RSA_SHA1 )
|
break;
|
||||||
|
#endif
|
||||||
|
#ifdef POLARSSL_SHA1_C
|
||||||
|
case SIG_RSA_SHA1:
|
||||||
sha1( message_str, msg_len, hash_result );
|
sha1( message_str, msg_len, hash_result );
|
||||||
else if( {digest} == SIG_RSA_SHA224 )
|
break;
|
||||||
|
#endif
|
||||||
|
#ifdef POLARSSL_SHA2_C
|
||||||
|
case SIG_RSA_SHA224:
|
||||||
sha2( message_str, msg_len, hash_result, 1 );
|
sha2( message_str, msg_len, hash_result, 1 );
|
||||||
else if( {digest} == SIG_RSA_SHA256 )
|
break;
|
||||||
|
case SIG_RSA_SHA256:
|
||||||
sha2( message_str, msg_len, hash_result, 0 );
|
sha2( message_str, msg_len, hash_result, 0 );
|
||||||
else if( {digest} == SIG_RSA_SHA384 )
|
break;
|
||||||
|
#endif
|
||||||
|
#ifdef POLARSSL_SHA4_C
|
||||||
|
case SIG_RSA_SHA384:
|
||||||
sha4( message_str, msg_len, hash_result, 1 );
|
sha4( message_str, msg_len, hash_result, 1 );
|
||||||
else if( {digest} == SIG_RSA_SHA512 )
|
break;
|
||||||
|
case SIG_RSA_SHA512:
|
||||||
sha4( message_str, msg_len, hash_result, 0 );
|
sha4( message_str, msg_len, hash_result, 0 );
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
TEST_ASSERT( rsa_pkcs1_verify( &ctx, RSA_PUBLIC, {digest}, 0, hash_result, result_str ) == {result} );
|
TEST_ASSERT( rsa_pkcs1_verify( &ctx, RSA_PUBLIC, {digest}, 0, hash_result, result_str ) == {result} );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue