Improve psa_rsa_decode_md_type()

Remove a case that cannot be triggered as PSA_ALG_SIGN_GET_HASH always
returns 0 for raw algorithms.

Signed-off-by: Janos Follath <janos.follath@arm.com>
diff --git a/library/psa_crypto_rsa.c b/library/psa_crypto_rsa.c
index 4363e91..5388923 100644
--- a/library/psa_crypto_rsa.c
+++ b/library/psa_crypto_rsa.c
@@ -368,11 +368,6 @@
         if( mbedtls_md_get_size( md_info ) != hash_length )
             return( PSA_ERROR_INVALID_ARGUMENT );
     }
-    else
-    {
-        if( hash_alg != 0 )
-            return( PSA_ERROR_INVALID_ARGUMENT );
-    }
 
     return( PSA_SUCCESS );
 }