mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-24 00:06:32 +01:00
Add test for cipher_list()
This commit is contained in:
parent
f3013830cc
commit
66dfc5a689
2 changed files with 13 additions and 0 deletions
|
|
@ -11,6 +11,16 @@
|
|||
* END_DEPENDENCIES
|
||||
*/
|
||||
|
||||
/* BEGIN_CASE */
|
||||
void cipher_list( )
|
||||
{
|
||||
const int *cipher_type;
|
||||
|
||||
for( cipher_type = cipher_list(); *cipher_type != 0; cipher_type++ )
|
||||
TEST_ASSERT( cipher_info_from_type( *cipher_type ) != NULL );
|
||||
}
|
||||
/* END_CASE */
|
||||
|
||||
/* BEGIN_CASE */
|
||||
void enc_dec_buf( int cipher_id, char *cipher_string, int key_len,
|
||||
int length_val, int pad_mode )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue