mbedtls/tests/suites/test_suite_shax.function

97 lines
2.4 KiB
Plaintext
Raw Normal View History

/* BEGIN_HEADER */
2015-03-09 17:05:11 +00:00
#include "mbedtls/sha1.h"
#include "mbedtls/sha256.h"
#include "mbedtls/sha512.h"
/* END_HEADER */
/* BEGIN_CASE depends_on:MBEDTLS_SHA1_C */
2017-06-09 03:32:58 +00:00
void mbedtls_sha1( HexParam_t * src_str, HexParam_t * hex_hash_string )
{
unsigned char output[41];
memset(output, 0x00, 41);
2017-06-09 03:32:58 +00:00
TEST_ASSERT( mbedtls_sha1_ret( src_str->x, src_str->len, output ) == 0 );
2017-06-09 03:32:58 +00:00
TEST_ASSERT( hexcmp( output, hex_hash_string->x, 20, hex_hash_string->len ) == 0 );
}
/* END_CASE */
/* BEGIN_CASE depends_on:MBEDTLS_SHA256_C */
2017-06-09 03:32:58 +00:00
void sha224( HexParam_t * src_str, HexParam_t * hex_hash_string )
{
unsigned char output[57];
memset(output, 0x00, 57);
2017-06-09 03:32:58 +00:00
TEST_ASSERT( mbedtls_sha256_ret( src_str->x, src_str->len, output, 1 ) == 0 );
2017-06-09 03:32:58 +00:00
TEST_ASSERT( hexcmp( output, hex_hash_string->x, 28, hex_hash_string->len ) == 0 );
}
/* END_CASE */
/* BEGIN_CASE depends_on:MBEDTLS_SHA256_C */
2017-06-09 03:32:58 +00:00
void mbedtls_sha256( HexParam_t * src_str, HexParam_t * hex_hash_string )
{
unsigned char output[65];
memset(output, 0x00, 65);
2017-06-09 03:32:58 +00:00
TEST_ASSERT( mbedtls_sha256_ret( src_str->x, src_str->len, output, 0 ) == 0 );
2017-06-09 03:32:58 +00:00
TEST_ASSERT( hexcmp( output, hex_hash_string->x, 32, hex_hash_string->len ) == 0 );
}
/* END_CASE */
/* BEGIN_CASE depends_on:MBEDTLS_SHA512_C */
2017-06-09 03:32:58 +00:00
void sha384( HexParam_t * src_str, HexParam_t * hex_hash_string )
{
unsigned char output[97];
memset(output, 0x00, 97);
2017-06-09 03:32:58 +00:00
TEST_ASSERT( mbedtls_sha512_ret( src_str->x, src_str->len, output, 1 ) == 0 );
2017-06-09 03:32:58 +00:00
TEST_ASSERT( hexcmp( output, hex_hash_string->x, 48, hex_hash_string->len ) == 0 );
}
/* END_CASE */
/* BEGIN_CASE depends_on:MBEDTLS_SHA512_C */
2017-06-09 03:32:58 +00:00
void mbedtls_sha512( HexParam_t * src_str, HexParam_t * hex_hash_string )
{
unsigned char output[129];
memset(output, 0x00, 129);
2017-06-09 03:32:58 +00:00
TEST_ASSERT( mbedtls_sha512_ret( src_str->x, src_str->len, output, 0 ) == 0 );
2017-06-09 03:32:58 +00:00
TEST_ASSERT( hexcmp( output, hex_hash_string->x, 64, hex_hash_string->len ) == 0 );
}
/* END_CASE */
/* BEGIN_CASE depends_on:MBEDTLS_SHA1_C:MBEDTLS_SELF_TEST */
2017-05-30 13:23:15 +00:00
void sha1_selftest( )
{
TEST_ASSERT( mbedtls_sha1_self_test( 1 ) == 0 );
}
/* END_CASE */
/* BEGIN_CASE depends_on:MBEDTLS_SHA256_C:MBEDTLS_SELF_TEST */
2017-05-30 13:23:15 +00:00
void sha256_selftest( )
{
TEST_ASSERT( mbedtls_sha256_self_test( 1 ) == 0 );
}
/* END_CASE */
/* BEGIN_CASE depends_on:MBEDTLS_SHA512_C:MBEDTLS_SELF_TEST */
2017-05-30 13:23:15 +00:00
void sha512_selftest( )
{
TEST_ASSERT( mbedtls_sha512_self_test( 1 ) == 0 );
}
/* END_CASE */