mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-03 20:22:59 -05:00 
			
		
		
		
	Fix edit mistake in cipher_wrap.c
Error was from 08c337d058bef
This commit is contained in:
		
							parent
							
								
									d0f143b1c9
								
							
						
					
					
						commit
						39f25616b3
					
				@ -841,8 +841,7 @@ static int aria_crypt_cbc_wrap( void *ctx, mbedtls_operation_t operation,
 | 
				
			|||||||
        size_t length, unsigned char *iv,
 | 
					        size_t length, unsigned char *iv,
 | 
				
			||||||
        const unsigned char *input, unsigned char *output )
 | 
					        const unsigned char *input, unsigned char *output )
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    (void) operation;
 | 
					    return mbedtls_aria_crypt_cbc( (mbedtls_aria_context *) ctx, operation, length, iv,
 | 
				
			||||||
    return mbedtls_aria_crypt_cbc( (mbedtls_aria_context *) ctx, length, iv,
 | 
					 | 
				
			||||||
                               input, output );
 | 
					                               input, output );
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
#endif /* MBEDTLS_CIPHER_MODE_CBC */
 | 
					#endif /* MBEDTLS_CIPHER_MODE_CBC */
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user