mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-04 04:32:24 -05:00 
			
		
		
		
	Fix formatting issues
Signed-off-by: Paul Elliott <paul.elliott@arm.com>
This commit is contained in:
		
							parent
							
								
									e716e6c00b
								
							
						
					
					
						commit
						355f59edbe
					
				@ -3912,7 +3912,6 @@ psa_status_t psa_aead_set_nonce( psa_aead_operation_t *operation,
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    status = psa_aead_check_nonce_length( operation->alg, nonce_length );
 | 
			
		||||
 | 
			
		||||
    if( status != PSA_SUCCESS )
 | 
			
		||||
    {
 | 
			
		||||
        status = PSA_ERROR_INVALID_ARGUMENT;
 | 
			
		||||
@ -3956,7 +3955,7 @@ psa_status_t psa_aead_set_lengths( psa_aead_operation_t *operation,
 | 
			
		||||
    {
 | 
			
		||||
        /* Lengths can only be too large for GCM if size_t is bigger than 32
 | 
			
		||||
         * bits. Without the guard this code will generate warnings on 32bit
 | 
			
		||||
        * builds */
 | 
			
		||||
         * builds. */
 | 
			
		||||
#if SIZE_MAX > UINT32_MAX
 | 
			
		||||
        if( (( uint64_t ) ad_length ) >> 61 != 0 ||
 | 
			
		||||
            (( uint64_t ) plaintext_length ) > 0xFFFFFFFE0ull )
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user