mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-03 20:22:59 -05:00 
			
		
		
		
	Included tests for the overflow
This commit is contained in:
		
							parent
							
								
									5be92eae55
								
							
						
					
					
						commit
						eddfe8f6f3
					
				@ -529,7 +529,8 @@ int mbedtls_rsa_rsaes_oaep_encrypt( mbedtls_rsa_context *ctx,
 | 
			
		||||
    olen = ctx->len;
 | 
			
		||||
    hlen = mbedtls_md_get_size( md_info );
 | 
			
		||||
 | 
			
		||||
    if( olen < ilen + 2 * hlen + 2 )
 | 
			
		||||
    // first comparison checks for overflow
 | 
			
		||||
    if( ilen + 2 * hlen + 2 < ilen || olen < ilen + 2 * hlen + 2 )
 | 
			
		||||
        return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
 | 
			
		||||
 | 
			
		||||
    memset( output, 0, olen );
 | 
			
		||||
@ -594,8 +595,9 @@ int mbedtls_rsa_rsaes_pkcs1_v15_encrypt( mbedtls_rsa_context *ctx,
 | 
			
		||||
        return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
 | 
			
		||||
 | 
			
		||||
    olen = ctx->len;
 | 
			
		||||
 | 
			
		||||
    if( olen < ilen + 11 )
 | 
			
		||||
    
 | 
			
		||||
    // first comparison checks for overflow
 | 
			
		||||
    if( ilen + 11 < ilen || olen < ilen + 11 )
 | 
			
		||||
        return( MBEDTLS_ERR_RSA_BAD_INPUT_DATA );
 | 
			
		||||
 | 
			
		||||
    nb_pad = olen - 3 - ilen;
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user