2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_HEADER */
|
2012-03-20 14:50:09 +01:00
|
|
|
#include <polarssl/gcm.h>
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_HEADER */
|
2012-03-20 14:50:09 +01:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_DEPENDENCIES
|
|
|
|
* depends_on:POLARSSL_GCM_C
|
|
|
|
* END_DEPENDENCIES
|
|
|
|
*/
|
2012-03-20 14:50:09 +01:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void gcm_encrypt_and_tag( char *hex_key_string, char *hex_src_string,
|
|
|
|
char *hex_iv_string, char *hex_add_string,
|
|
|
|
char *hex_dst_string, int tag_len_bits,
|
|
|
|
char *hex_tag_string, int init_result )
|
2012-03-20 14:50:09 +01:00
|
|
|
{
|
|
|
|
unsigned char key_str[128];
|
|
|
|
unsigned char src_str[128];
|
|
|
|
unsigned char dst_str[257];
|
|
|
|
unsigned char iv_str[128];
|
|
|
|
unsigned char add_str[128];
|
|
|
|
unsigned char tag_str[128];
|
|
|
|
unsigned char output[128];
|
|
|
|
unsigned char tag_output[16];
|
|
|
|
gcm_context ctx;
|
|
|
|
unsigned int key_len;
|
2013-08-20 11:48:36 +02:00
|
|
|
size_t pt_len, iv_len, add_len, tag_len = tag_len_bits / 8;
|
2012-03-20 14:50:09 +01:00
|
|
|
|
|
|
|
memset(key_str, 0x00, 128);
|
|
|
|
memset(src_str, 0x00, 128);
|
2012-09-08 16:04:13 +02:00
|
|
|
memset(dst_str, 0x00, 257);
|
2012-03-20 14:50:09 +01:00
|
|
|
memset(iv_str, 0x00, 128);
|
|
|
|
memset(add_str, 0x00, 128);
|
|
|
|
memset(tag_str, 0x00, 128);
|
|
|
|
memset(output, 0x00, 128);
|
|
|
|
memset(tag_output, 0x00, 16);
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
key_len = unhexify( key_str, hex_key_string );
|
|
|
|
pt_len = unhexify( src_str, hex_src_string );
|
|
|
|
iv_len = unhexify( iv_str, hex_iv_string );
|
|
|
|
add_len = unhexify( add_str, hex_add_string );
|
2012-03-20 14:50:09 +01:00
|
|
|
|
2013-09-09 00:10:27 +02:00
|
|
|
TEST_ASSERT( gcm_init( &ctx, POLARSSL_CIPHER_ID_AES, key_str, key_len * 8 ) == init_result );
|
2013-08-20 11:48:36 +02:00
|
|
|
if( init_result == 0 )
|
2012-03-20 14:50:09 +01:00
|
|
|
{
|
|
|
|
TEST_ASSERT( gcm_crypt_and_tag( &ctx, GCM_ENCRYPT, pt_len, iv_str, iv_len, add_str, add_len, src_str, output, tag_len, tag_output ) == 0 );
|
|
|
|
hexify( dst_str, output, pt_len );
|
|
|
|
hexify( tag_str, tag_output, tag_len );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( strcmp( (char *) dst_str, hex_dst_string ) == 0 );
|
|
|
|
TEST_ASSERT( strcmp( (char *) tag_str, hex_tag_string ) == 0 );
|
2012-03-20 14:50:09 +01:00
|
|
|
}
|
2013-09-13 13:45:58 +02:00
|
|
|
|
|
|
|
gcm_free( &ctx );
|
2012-03-20 14:50:09 +01:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2012-03-20 14:50:09 +01:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void gcm_decrypt_and_verify( char *hex_key_string, char *hex_src_string,
|
|
|
|
char *hex_iv_string, char *hex_add_string,
|
|
|
|
int tag_len_bits, char *hex_tag_string,
|
|
|
|
char *pt_result, int init_result )
|
2012-03-20 14:50:09 +01:00
|
|
|
{
|
|
|
|
unsigned char key_str[128];
|
|
|
|
unsigned char src_str[128];
|
|
|
|
unsigned char dst_str[257];
|
|
|
|
unsigned char iv_str[128];
|
|
|
|
unsigned char add_str[128];
|
|
|
|
unsigned char tag_str[128];
|
|
|
|
unsigned char output[128];
|
|
|
|
gcm_context ctx;
|
|
|
|
unsigned int key_len;
|
2013-08-20 11:48:36 +02:00
|
|
|
size_t pt_len, iv_len, add_len, tag_len = tag_len_bits / 8;
|
2012-03-20 14:50:09 +01:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
memset(key_str, 0x00, 128);
|
|
|
|
memset(src_str, 0x00, 128);
|
2012-09-08 16:04:13 +02:00
|
|
|
memset(dst_str, 0x00, 257);
|
2012-03-20 14:50:09 +01:00
|
|
|
memset(iv_str, 0x00, 128);
|
|
|
|
memset(add_str, 0x00, 128);
|
|
|
|
memset(tag_str, 0x00, 128);
|
|
|
|
memset(output, 0x00, 128);
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
key_len = unhexify( key_str, hex_key_string );
|
|
|
|
pt_len = unhexify( src_str, hex_src_string );
|
|
|
|
iv_len = unhexify( iv_str, hex_iv_string );
|
|
|
|
add_len = unhexify( add_str, hex_add_string );
|
|
|
|
unhexify( tag_str, hex_tag_string );
|
2012-03-20 14:50:09 +01:00
|
|
|
|
2013-09-09 00:10:27 +02:00
|
|
|
TEST_ASSERT( gcm_init( &ctx, POLARSSL_CIPHER_ID_AES, key_str, key_len * 8 ) == init_result );
|
2013-08-20 11:48:36 +02:00
|
|
|
if( init_result == 0 )
|
2012-03-20 14:50:09 +01:00
|
|
|
{
|
|
|
|
ret = gcm_auth_decrypt( &ctx, pt_len, iv_str, iv_len, add_str, add_len, tag_str, tag_len, src_str, output );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
if( strcmp( "FAIL", pt_result ) == 0 )
|
2012-03-20 14:50:09 +01:00
|
|
|
{
|
|
|
|
TEST_ASSERT( ret == POLARSSL_ERR_GCM_AUTH_FAILED );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-03 20:17:35 +02:00
|
|
|
TEST_ASSERT( ret == 0 );
|
2012-03-20 14:50:09 +01:00
|
|
|
hexify( dst_str, output, pt_len );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( strcmp( (char *) dst_str, pt_result ) == 0 );
|
2012-03-20 14:50:09 +01:00
|
|
|
}
|
|
|
|
}
|
2013-09-13 13:45:58 +02:00
|
|
|
|
|
|
|
gcm_free( &ctx );
|
2012-03-20 14:50:09 +01:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2012-03-20 14:50:09 +01:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void gcm_selftest()
|
2012-03-20 14:50:09 +01:00
|
|
|
{
|
|
|
|
TEST_ASSERT( gcm_self_test( 0 ) == 0 );
|
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|