1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Add (placeholder) CCM module

This commit is contained in:
Manuel Pégourié-Gonnard
2014-05-02 15:17:29 +02:00
parent 47431b6d31
commit a6916fada8
16 changed files with 192 additions and 4 deletions

View 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 */