Fix style and formatting for OFB feature

This commit is contained in:
Simon Butcher 2018-05-22 22:40:36 +01:00
parent 374bcd4255
commit 00131446be
3 changed files with 8 additions and 9 deletions

View file

@ -59,7 +59,6 @@ struct mbedtls_cipher_base_t
#if defined(MBEDTLS_CIPHER_MODE_CFB)
/** Encrypt using CFB (Full length) */
int (*cfb_func)( void *ctx, mbedtls_operation_t mode, size_t length, size_t *iv_off,
unsigned char *iv, const unsigned char *input,
unsigned char *output );

View file

@ -326,7 +326,7 @@ void aes_encrypt_ofb( int fragment_size, char *hex_key_string,
hexify( dst_str, output, fragment_size );
TEST_ASSERT( strncmp( (char *) dst_str, hex_dst_string,
( 2 * fragment_size) ) == 0 );
( 2 * fragment_size ) ) == 0 );
in_buffer_len -= fragment_size;
hex_dst_string += ( fragment_size * 2 );