Lines Matching refs:cipher_id
166 void gcm_bad_parameters( int cipher_id, int direction,
181 TEST_ASSERT( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ) == 0 );
191 void gcm_encrypt_and_tag( int cipher_id, data_t * key_str,
210 … TEST_ASSERT( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ) == init_result );
238 void gcm_decrypt_and_verify( int cipher_id, data_t * key_str,
256 … TEST_ASSERT( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ) == init_result );
291 void gcm_decrypt_and_verify_empty_cipher( int cipher_id,
302 TEST_ASSERT( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ) == 0 );
312 void gcm_decrypt_and_verify_empty_ad( int cipher_id,
324 TEST_ASSERT( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ) == 0 );
334 void gcm_decrypt_and_verify_no_ad_no_cipher( int cipher_id,
343 TEST_ASSERT( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ) == 0 );
352 void gcm_encrypt_and_tag_empty_cipher( int cipher_id,
363 TEST_ASSERT( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ) == 0 );
374 void gcm_encrypt_and_tag_empty_ad( int cipher_id,
386 TEST_ASSERT( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ) == 0 );
397 void gcm_encrypt_and_verify_no_ad_no_cipher( int cipher_id,
406 TEST_ASSERT( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ) == 0 );
435 void gcm_update_output_buffer_too_small( int cipher_id, int mode,
445 TEST_EQUAL( mbedtls_gcm_setkey( &ctx, cipher_id, key_str->x, key_str->len * 8 ), 0 );