File: test_suite_mdx.function

package info (click to toggle)
mbedtls 3.6.5-0.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 51,488 kB
  • sloc: ansic: 164,842; sh: 25,443; python: 15,512; makefile: 3,131; perl: 1,043; tcl: 4
file content (58 lines) | stat: -rw-r--r-- 1,550 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* BEGIN_HEADER */
#include "mbedtls/md5.h"
#include "mbedtls/ripemd160.h"
/* END_HEADER */

/* BEGIN_CASE depends_on:MBEDTLS_MD5_C */
void md5_text(char *text_src_string, data_t *hash)
{
    int ret;
    unsigned char src_str[100];
    unsigned char output[16];

    memset(src_str, 0x00, sizeof(src_str));
    memset(output, 0x00, sizeof(output));

    strncpy((char *) src_str, text_src_string, sizeof(src_str) - 1);

    ret = mbedtls_md5(src_str, strlen((char *) src_str), output);
    TEST_ASSERT(ret == 0);

    TEST_ASSERT(mbedtls_test_hexcmp(output, hash->x,
                                    sizeof(output), hash->len) == 0);
}
/* END_CASE */

/* BEGIN_CASE depends_on:MBEDTLS_RIPEMD160_C */
void ripemd160_text(char *text_src_string, data_t *hash)
{
    int ret;
    unsigned char src_str[100];
    unsigned char output[20];

    memset(src_str, 0x00, sizeof(src_str));
    memset(output, 0x00, sizeof(output));

    strncpy((char *) src_str, text_src_string, sizeof(src_str) - 1);

    ret = mbedtls_ripemd160(src_str, strlen((char *) src_str), output);
    TEST_ASSERT(ret == 0);

    TEST_ASSERT(mbedtls_test_hexcmp(output, hash->x,
                                    sizeof(output), hash->len) == 0);
}
/* END_CASE */

/* BEGIN_CASE depends_on:MBEDTLS_MD5_C:MBEDTLS_SELF_TEST */
void md5_selftest()
{
    TEST_ASSERT(mbedtls_md5_self_test(1) == 0);
}
/* END_CASE */

/* BEGIN_CASE depends_on:MBEDTLS_RIPEMD160_C:MBEDTLS_SELF_TEST */
void ripemd160_selftest()
{
    TEST_ASSERT(mbedtls_ripemd160_self_test(1) == 0);
}
/* END_CASE */