mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-01-07 15:09:28 +01:00
Add (placeholder) CCM module
This commit is contained in:
parent
47431b6d31
commit
a6916fada8
16 changed files with 192 additions and 4 deletions
2
tests/suites/test_suite_ccm.data
Normal file
2
tests/suites/test_suite_ccm.data
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
CCM self test
|
||||
ccm_self_test:
|
||||
15
tests/suites/test_suite_ccm.function
Normal file
15
tests/suites/test_suite_ccm.function
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
/* BEGIN_HEADER */
|
||||
#include <polarssl/ccm.h>
|
||||
/* END_HEADER */
|
||||
|
||||
/* BEGIN_DEPENDENCIES
|
||||
* depends_on:POLARSSL_CCM_C
|
||||
* END_DEPENDENCIES
|
||||
*/
|
||||
|
||||
/* BEGIN_CASE depends_on:POLARSSL_SELF_TEST:POLARSSL_AES_C */
|
||||
void ccm_self_test( )
|
||||
{
|
||||
TEST_ASSERT( ccm_self_test( 0 ) == 0 );
|
||||
}
|
||||
/* END_CASE */
|
||||
Loading…
Add table
Add a link
Reference in a new issue