Daniel King | 34b822c | 2016-05-15 17:28:08 -0300 | [diff] [blame] | 1 | /* BEGIN_HEADER */ |
| 2 | #include "mbedtls/chacha20.h" |
| 3 | /* END_HEADER */ |
| 4 | |
| 5 | /* BEGIN_DEPENDENCIES |
| 6 | * depends_on:MBEDTLS_CHACHA20_C |
| 7 | * END_DEPENDENCIES |
| 8 | */ |
Daniel King | 6155cc8 | 2016-05-18 11:51:22 -0300 | [diff] [blame] | 9 | |
| 10 | /* BEGIN_CASE */ |
Ronald Cron | 9ed4073 | 2020-06-25 09:03:34 +0200 | [diff] [blame] | 11 | void chacha20_crypt( data_t *key_str, |
| 12 | data_t *nonce_str, |
Daniel King | 6155cc8 | 2016-05-18 11:51:22 -0300 | [diff] [blame] | 13 | int counter, |
Ronald Cron | 9ed4073 | 2020-06-25 09:03:34 +0200 | [diff] [blame] | 14 | data_t *src_str, |
| 15 | data_t *expected_output_str ) |
Daniel King | 6155cc8 | 2016-05-18 11:51:22 -0300 | [diff] [blame] | 16 | { |
Ronald Cron | 7e51271 | 2020-06-25 11:33:01 +0200 | [diff] [blame] | 17 | unsigned char output[375]; |
Manuel Pégourié-Gonnard | 55c0d09 | 2018-05-09 12:37:58 +0200 | [diff] [blame] | 18 | mbedtls_chacha20_context ctx; |
Daniel King | 6155cc8 | 2016-05-18 11:51:22 -0300 | [diff] [blame] | 19 | |
Ronald Cron | 9ed4073 | 2020-06-25 09:03:34 +0200 | [diff] [blame] | 20 | memset( output, 0x00, sizeof( output ) ); |
Daniel King | 6155cc8 | 2016-05-18 11:51:22 -0300 | [diff] [blame] | 21 | |
Ronald Cron | 9ed4073 | 2020-06-25 09:03:34 +0200 | [diff] [blame] | 22 | TEST_ASSERT( src_str->len == expected_output_str->len ); |
| 23 | TEST_ASSERT( key_str->len == 32U ); |
| 24 | TEST_ASSERT( nonce_str->len == 12U ); |
Daniel King | 6155cc8 | 2016-05-18 11:51:22 -0300 | [diff] [blame] | 25 | |
Manuel Pégourié-Gonnard | 55c0d09 | 2018-05-09 12:37:58 +0200 | [diff] [blame] | 26 | /* |
| 27 | * Test the integrated API |
| 28 | */ |
Ronald Cron | 9ed4073 | 2020-06-25 09:03:34 +0200 | [diff] [blame] | 29 | TEST_ASSERT( mbedtls_chacha20_crypt( key_str->x, nonce_str->x, counter, src_str->len, src_str->x, output ) == 0 ); |
Daniel King | 6155cc8 | 2016-05-18 11:51:22 -0300 | [diff] [blame] | 30 | |
Ronald Cron | d8902b6 | 2020-07-30 14:18:02 +0200 | [diff] [blame] | 31 | ASSERT_COMPARE( output, expected_output_str->len, |
| 32 | expected_output_str->x, expected_output_str->len ); |
Daniel King | 6155cc8 | 2016-05-18 11:51:22 -0300 | [diff] [blame] | 33 | |
Manuel Pégourié-Gonnard | 55c0d09 | 2018-05-09 12:37:58 +0200 | [diff] [blame] | 34 | /* |
| 35 | * Test the streaming API |
| 36 | */ |
| 37 | mbedtls_chacha20_init( &ctx ); |
| 38 | |
Ronald Cron | 9ed4073 | 2020-06-25 09:03:34 +0200 | [diff] [blame] | 39 | TEST_ASSERT( mbedtls_chacha20_setkey( &ctx, key_str->x ) == 0 ); |
Manuel Pégourié-Gonnard | 55c0d09 | 2018-05-09 12:37:58 +0200 | [diff] [blame] | 40 | |
Ronald Cron | 9ed4073 | 2020-06-25 09:03:34 +0200 | [diff] [blame] | 41 | TEST_ASSERT( mbedtls_chacha20_starts( &ctx, nonce_str->x, counter ) == 0 ); |
Manuel Pégourié-Gonnard | 55c0d09 | 2018-05-09 12:37:58 +0200 | [diff] [blame] | 42 | |
| 43 | memset( output, 0x00, sizeof( output ) ); |
Ronald Cron | 9ed4073 | 2020-06-25 09:03:34 +0200 | [diff] [blame] | 44 | TEST_ASSERT( mbedtls_chacha20_update( &ctx, src_str->len, src_str->x, output ) == 0 ); |
Manuel Pégourié-Gonnard | 55c0d09 | 2018-05-09 12:37:58 +0200 | [diff] [blame] | 45 | |
Ronald Cron | d8902b6 | 2020-07-30 14:18:02 +0200 | [diff] [blame] | 46 | ASSERT_COMPARE( output, expected_output_str->len, |
| 47 | expected_output_str->x, expected_output_str->len ); |
Manuel Pégourié-Gonnard | 55c0d09 | 2018-05-09 12:37:58 +0200 | [diff] [blame] | 48 | |
| 49 | /* |
| 50 | * Test the streaming API again, piecewise |
| 51 | */ |
| 52 | |
Manuel Pégourié-Gonnard | 1465602 | 2018-05-09 12:51:54 +0200 | [diff] [blame] | 53 | /* Don't free/init the context nor set the key again, |
| 54 | * in order to test that starts() does the right thing. */ |
Ronald Cron | 9ed4073 | 2020-06-25 09:03:34 +0200 | [diff] [blame] | 55 | TEST_ASSERT( mbedtls_chacha20_starts( &ctx, nonce_str->x, counter ) == 0 ); |
Manuel Pégourié-Gonnard | 55c0d09 | 2018-05-09 12:37:58 +0200 | [diff] [blame] | 56 | |
| 57 | memset( output, 0x00, sizeof( output ) ); |
Ronald Cron | 9ed4073 | 2020-06-25 09:03:34 +0200 | [diff] [blame] | 58 | TEST_ASSERT( mbedtls_chacha20_update( &ctx, 1, src_str->x, output ) == 0 ); |
| 59 | TEST_ASSERT( mbedtls_chacha20_update( &ctx, src_str->len - 1, |
| 60 | src_str->x + 1, output + 1 ) == 0 ); |
Manuel Pégourié-Gonnard | 55c0d09 | 2018-05-09 12:37:58 +0200 | [diff] [blame] | 61 | |
Ronald Cron | d8902b6 | 2020-07-30 14:18:02 +0200 | [diff] [blame] | 62 | ASSERT_COMPARE( output, expected_output_str->len, |
| 63 | expected_output_str->x, expected_output_str->len ); |
Manuel Pégourié-Gonnard | 55c0d09 | 2018-05-09 12:37:58 +0200 | [diff] [blame] | 64 | |
| 65 | mbedtls_chacha20_free( &ctx ); |
Daniel King | 6155cc8 | 2016-05-18 11:51:22 -0300 | [diff] [blame] | 66 | } |
| 67 | /* END_CASE */ |
| 68 | |
Daniel King | 34b822c | 2016-05-15 17:28:08 -0300 | [diff] [blame] | 69 | /* BEGIN_CASE depends_on:MBEDTLS_SELF_TEST */ |
| 70 | void chacha20_self_test() |
| 71 | { |
Manuel Pégourié-Gonnard | fce88b2 | 2018-05-09 13:06:12 +0200 | [diff] [blame] | 72 | TEST_ASSERT( mbedtls_chacha20_self_test( 1 ) == 0 ); |
Daniel King | 34b822c | 2016-05-15 17:28:08 -0300 | [diff] [blame] | 73 | } |
Manuel Pégourié-Gonnard | 528524b | 2018-05-09 11:21:21 +0200 | [diff] [blame] | 74 | /* END_CASE */ |