2014-01-30 17:22:14 +01:00
|
|
|
/* BEGIN_HEADER */
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/hmac_drbg.h"
|
2017-04-06 12:55:43 +02:00
|
|
|
#include "string.h"
|
2015-02-06 14:43:58 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
typedef struct {
|
2014-01-30 17:22:14 +01:00
|
|
|
unsigned char *p;
|
|
|
|
size_t len;
|
|
|
|
} entropy_ctx;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
static int mbedtls_test_entropy_func(void *data, unsigned char *buf, size_t len)
|
2014-01-30 17:22:14 +01:00
|
|
|
{
|
|
|
|
entropy_ctx *ctx = (entropy_ctx *) data;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (len > ctx->len) {
|
|
|
|
return -1;
|
|
|
|
}
|
2014-01-30 17:22:14 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
memcpy(buf, ctx->p, len);
|
2014-01-30 17:22:14 +01:00
|
|
|
|
|
|
|
ctx->p += len;
|
|
|
|
ctx->len -= len;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2014-01-30 17:22:14 +01:00
|
|
|
}
|
|
|
|
/* END_HEADER */
|
|
|
|
|
|
|
|
/* BEGIN_DEPENDENCIES
|
2015-04-08 12:49:31 +02:00
|
|
|
* depends_on:MBEDTLS_HMAC_DRBG_C
|
2014-01-30 17:22:14 +01:00
|
|
|
* END_DEPENDENCIES
|
|
|
|
*/
|
|
|
|
|
2014-01-30 22:39:42 +01:00
|
|
|
/* BEGIN_CASE */
|
2023-01-11 14:50:10 +01:00
|
|
|
void hmac_drbg_entropy_usage(int md_alg)
|
2014-01-30 22:39:42 +01:00
|
|
|
{
|
|
|
|
unsigned char out[16];
|
|
|
|
unsigned char buf[1024];
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_md_info_t *md_info;
|
|
|
|
mbedtls_hmac_drbg_context ctx;
|
2014-01-30 22:39:42 +01:00
|
|
|
entropy_ctx entropy;
|
2019-10-22 19:10:33 +02:00
|
|
|
size_t i, reps = 10;
|
|
|
|
size_t default_entropy_len;
|
|
|
|
size_t expected_consumed_entropy = 0;
|
2014-01-30 22:39:42 +01:00
|
|
|
|
2023-03-20 10:44:44 +01:00
|
|
|
MD_PSA_INIT();
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_hmac_drbg_init(&ctx);
|
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
memset(out, 0, sizeof(out));
|
2014-01-30 22:39:42 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
entropy.len = sizeof(buf);
|
2014-01-30 22:39:42 +01:00
|
|
|
entropy.p = buf;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
md_info = mbedtls_md_info_from_type(md_alg);
|
|
|
|
TEST_ASSERT(md_info != NULL);
|
|
|
|
if (mbedtls_md_get_size(md_info) <= 20) {
|
2019-10-22 19:10:33 +02:00
|
|
|
default_entropy_len = 16;
|
2023-01-11 14:50:10 +01:00
|
|
|
} else if (mbedtls_md_get_size(md_info) <= 28) {
|
2019-10-22 19:10:33 +02:00
|
|
|
default_entropy_len = 24;
|
2023-01-11 14:50:10 +01:00
|
|
|
} else {
|
2019-10-22 19:10:33 +02:00
|
|
|
default_entropy_len = 32;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2014-01-30 22:39:42 +01:00
|
|
|
|
2020-03-02 02:06:11 +01:00
|
|
|
/* Set reseed interval before seed */
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_hmac_drbg_set_reseed_interval(&ctx, 2 * reps);
|
2020-03-02 02:06:11 +01:00
|
|
|
|
2014-01-30 22:39:42 +01:00
|
|
|
/* Init must use entropy */
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_seed(&ctx, md_info, mbedtls_test_entropy_func, &entropy,
|
|
|
|
NULL, 0) == 0);
|
2019-10-22 19:10:33 +02:00
|
|
|
/* default_entropy_len of entropy, plus half as much for the nonce */
|
|
|
|
expected_consumed_entropy += default_entropy_len * 3 / 2;
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_EQUAL(sizeof(buf) - entropy.len, expected_consumed_entropy);
|
2014-01-30 22:39:42 +01:00
|
|
|
|
2020-03-02 02:06:11 +01:00
|
|
|
/* By default, PR is off, and reseed interval was set to
|
|
|
|
* 2 * reps so the next few calls should not use entropy */
|
2023-01-11 14:50:10 +01:00
|
|
|
for (i = 0; i < reps; i++) {
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_random(&ctx, out, sizeof(out) - 4) == 0);
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_random_with_add(&ctx, out, sizeof(out) - 4,
|
|
|
|
buf, 16) == 0);
|
2014-01-30 22:39:42 +01:00
|
|
|
}
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_EQUAL(sizeof(buf) - entropy.len, expected_consumed_entropy);
|
2014-01-30 22:39:42 +01:00
|
|
|
|
|
|
|
/* While at it, make sure we didn't write past the requested length */
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(out[sizeof(out) - 4] == 0);
|
|
|
|
TEST_ASSERT(out[sizeof(out) - 3] == 0);
|
|
|
|
TEST_ASSERT(out[sizeof(out) - 2] == 0);
|
|
|
|
TEST_ASSERT(out[sizeof(out) - 1] == 0);
|
2014-01-30 22:39:42 +01:00
|
|
|
|
2020-03-02 02:06:11 +01:00
|
|
|
/* There have been 2 * reps calls to random. The next call should reseed */
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_random(&ctx, out, sizeof(out)) == 0);
|
2019-10-22 19:10:33 +02:00
|
|
|
expected_consumed_entropy += default_entropy_len;
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_EQUAL(sizeof(buf) - entropy.len, expected_consumed_entropy);
|
2014-01-30 22:39:42 +01:00
|
|
|
|
2020-03-02 02:06:11 +01:00
|
|
|
/* Set reseed interval after seed */
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_hmac_drbg_set_reseed_interval(&ctx, 4 * reps + 1);
|
2020-03-02 02:06:11 +01:00
|
|
|
|
2014-01-30 22:39:42 +01:00
|
|
|
/* The new few calls should not reseed */
|
2023-01-11 14:50:10 +01:00
|
|
|
for (i = 0; i < (2 * reps); i++) {
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_random(&ctx, out, sizeof(out)) == 0);
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_random_with_add(&ctx, out, sizeof(out),
|
|
|
|
buf, 16) == 0);
|
2014-01-30 22:39:42 +01:00
|
|
|
}
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_EQUAL(sizeof(buf) - entropy.len, expected_consumed_entropy);
|
2014-01-30 22:39:42 +01:00
|
|
|
|
|
|
|
/* Now enable PR, so the next few calls should all reseed */
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_hmac_drbg_set_prediction_resistance(&ctx, MBEDTLS_HMAC_DRBG_PR_ON);
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_random(&ctx, out, sizeof(out)) == 0);
|
2019-10-22 19:10:33 +02:00
|
|
|
expected_consumed_entropy += default_entropy_len;
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_EQUAL(sizeof(buf) - entropy.len, expected_consumed_entropy);
|
2014-01-30 22:39:42 +01:00
|
|
|
|
|
|
|
/* Finally, check setting entropy_len */
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_hmac_drbg_set_entropy_len(&ctx, 42);
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_random(&ctx, out, sizeof(out)) == 0);
|
2019-10-22 19:10:33 +02:00
|
|
|
expected_consumed_entropy += 42;
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_EQUAL(sizeof(buf) - entropy.len, expected_consumed_entropy);
|
2014-01-30 22:39:42 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_hmac_drbg_set_entropy_len(&ctx, 13);
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_random(&ctx, out, sizeof(out)) == 0);
|
2019-10-22 19:10:33 +02:00
|
|
|
expected_consumed_entropy += 13;
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_EQUAL(sizeof(buf) - entropy.len, expected_consumed_entropy);
|
2014-07-10 15:26:12 +02:00
|
|
|
|
|
|
|
exit:
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_hmac_drbg_free(&ctx);
|
2023-03-20 10:44:44 +01:00
|
|
|
MD_PSA_DONE();
|
2014-01-30 22:39:42 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_FS_IO */
|
2023-01-11 14:50:10 +01:00
|
|
|
void hmac_drbg_seed_file(int md_alg, char *path, int ret)
|
2014-01-30 21:11:16 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_md_info_t *md_info;
|
|
|
|
mbedtls_hmac_drbg_context ctx;
|
2014-01-30 21:11:16 +01:00
|
|
|
|
2023-03-20 10:44:44 +01:00
|
|
|
MD_PSA_INIT();
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_hmac_drbg_init(&ctx);
|
2015-04-28 22:07:14 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
md_info = mbedtls_md_info_from_type(md_alg);
|
|
|
|
TEST_ASSERT(md_info != NULL);
|
2014-04-17 16:07:20 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_seed(&ctx, md_info,
|
|
|
|
mbedtls_test_rnd_std_rand, NULL,
|
|
|
|
NULL, 0) == 0);
|
2014-01-30 21:11:16 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_write_seed_file(&ctx, path) == ret);
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_update_seed_file(&ctx, path) == ret);
|
2014-01-30 21:11:16 +01:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_hmac_drbg_free(&ctx);
|
2023-03-20 10:44:44 +01:00
|
|
|
MD_PSA_DONE();
|
2014-01-30 21:11:16 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2014-01-30 22:39:42 +01:00
|
|
|
/* BEGIN_CASE */
|
2023-01-11 14:50:10 +01:00
|
|
|
void hmac_drbg_buf(int md_alg)
|
2014-01-30 22:39:42 +01:00
|
|
|
{
|
|
|
|
unsigned char out[16];
|
|
|
|
unsigned char buf[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_md_info_t *md_info;
|
|
|
|
mbedtls_hmac_drbg_context ctx;
|
2014-01-30 22:39:42 +01:00
|
|
|
size_t i;
|
|
|
|
|
2023-03-20 10:44:44 +01:00
|
|
|
MD_PSA_INIT();
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_hmac_drbg_init(&ctx);
|
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
memset(out, 0, sizeof(out));
|
2014-01-30 22:39:42 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
md_info = mbedtls_md_info_from_type(md_alg);
|
|
|
|
TEST_ASSERT(md_info != NULL);
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_seed_buf(&ctx, md_info, buf, sizeof(buf)) == 0);
|
2014-01-30 22:39:42 +01:00
|
|
|
|
|
|
|
/* Make sure it never tries to reseed (would segfault otherwise) */
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_hmac_drbg_set_reseed_interval(&ctx, 3);
|
|
|
|
mbedtls_hmac_drbg_set_prediction_resistance(&ctx, MBEDTLS_HMAC_DRBG_PR_ON);
|
2014-01-30 22:39:42 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
for (i = 0; i < 30; i++) {
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_random(&ctx, out, sizeof(out)) == 0);
|
|
|
|
}
|
2014-01-30 22:39:42 +01:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_hmac_drbg_free(&ctx);
|
2023-03-20 10:44:44 +01:00
|
|
|
MD_PSA_DONE();
|
2014-01-30 22:39:42 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2014-01-30 17:22:14 +01:00
|
|
|
/* BEGIN_CASE */
|
2023-01-11 14:50:10 +01:00
|
|
|
void hmac_drbg_no_reseed(int md_alg, data_t *entropy,
|
|
|
|
data_t *custom, data_t *add1,
|
|
|
|
data_t *add2, data_t *output)
|
2014-01-30 17:22:14 +01:00
|
|
|
{
|
2014-02-01 11:30:03 +01:00
|
|
|
unsigned char data[1024];
|
2014-01-30 17:22:14 +01:00
|
|
|
unsigned char my_output[512];
|
|
|
|
entropy_ctx p_entropy;
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_md_info_t *md_info;
|
|
|
|
mbedtls_hmac_drbg_context ctx;
|
2014-01-30 17:22:14 +01:00
|
|
|
|
2023-03-20 10:44:44 +01:00
|
|
|
MD_PSA_INIT();
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_hmac_drbg_init(&ctx);
|
2014-01-30 17:22:14 +01:00
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
p_entropy.p = entropy->x;
|
|
|
|
p_entropy.len = entropy->len;
|
2014-01-30 17:22:14 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
md_info = mbedtls_md_info_from_type(md_alg);
|
|
|
|
TEST_ASSERT(md_info != NULL);
|
2014-02-01 11:30:03 +01:00
|
|
|
|
|
|
|
/* Test the simplified buffer-based variant */
|
2023-01-11 14:50:10 +01:00
|
|
|
memcpy(data, entropy->x, p_entropy.len);
|
|
|
|
memcpy(data + p_entropy.len, custom->x, custom->len);
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_seed_buf(&ctx, md_info,
|
|
|
|
data, p_entropy.len + custom->len) == 0);
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_random_with_add(&ctx, my_output, output->len,
|
|
|
|
add1->x, add1->len) == 0);
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_random_with_add(&ctx, my_output, output->len,
|
|
|
|
add2->x, add2->len) == 0);
|
2014-07-10 15:26:12 +02:00
|
|
|
|
2020-03-02 02:06:11 +01:00
|
|
|
/* Reset context for second run */
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_hmac_drbg_free(&ctx);
|
2014-02-01 11:30:03 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(memcmp(my_output, output->x, output->len) == 0);
|
2014-02-01 11:30:03 +01:00
|
|
|
|
|
|
|
/* And now the normal entropy-based variant */
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_seed(&ctx, md_info, mbedtls_test_entropy_func, &p_entropy,
|
|
|
|
custom->x, custom->len) == 0);
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_random_with_add(&ctx, my_output, output->len,
|
|
|
|
add1->x, add1->len) == 0);
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_random_with_add(&ctx, my_output, output->len,
|
|
|
|
add2->x, add2->len) == 0);
|
|
|
|
TEST_ASSERT(memcmp(my_output, output->x, output->len) == 0);
|
2014-02-01 11:30:03 +01:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_hmac_drbg_free(&ctx);
|
2023-03-20 10:44:44 +01:00
|
|
|
MD_PSA_DONE();
|
2014-01-31 09:54:14 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
2023-01-11 14:50:10 +01:00
|
|
|
void hmac_drbg_nopr(int md_alg, data_t *entropy, data_t *custom,
|
|
|
|
data_t *add1, data_t *add2, data_t *add3,
|
|
|
|
data_t *output)
|
2014-01-31 09:54:14 +01:00
|
|
|
{
|
|
|
|
unsigned char my_output[512];
|
|
|
|
entropy_ctx p_entropy;
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_md_info_t *md_info;
|
|
|
|
mbedtls_hmac_drbg_context ctx;
|
2014-01-31 09:54:14 +01:00
|
|
|
|
2023-03-20 10:44:44 +01:00
|
|
|
MD_PSA_INIT();
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_hmac_drbg_init(&ctx);
|
2017-05-30 15:23:15 +02:00
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
p_entropy.p = entropy->x;
|
|
|
|
p_entropy.len = entropy->len;
|
2014-01-31 09:54:14 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
md_info = mbedtls_md_info_from_type(md_alg);
|
|
|
|
TEST_ASSERT(md_info != NULL);
|
2014-04-17 16:07:20 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_seed(&ctx, md_info, mbedtls_test_entropy_func, &p_entropy,
|
|
|
|
custom->x, custom->len) == 0);
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_reseed(&ctx, add1->x, add1->len) == 0);
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_random_with_add(&ctx, my_output, output->len,
|
|
|
|
add2->x, add2->len) == 0);
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_random_with_add(&ctx, my_output, output->len,
|
|
|
|
add3->x, add3->len) == 0);
|
2014-01-31 09:54:14 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(memcmp(my_output, output->x, output->len) == 0);
|
2014-01-30 17:22:14 +01:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_hmac_drbg_free(&ctx);
|
2023-03-20 10:44:44 +01:00
|
|
|
MD_PSA_DONE();
|
2014-01-30 17:22:14 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2014-01-31 10:16:57 +01:00
|
|
|
/* BEGIN_CASE */
|
2023-01-11 14:50:10 +01:00
|
|
|
void hmac_drbg_pr(int md_alg, data_t *entropy, data_t *custom,
|
|
|
|
data_t *add1, data_t *add2, data_t *output)
|
2014-01-31 10:16:57 +01:00
|
|
|
{
|
|
|
|
unsigned char my_output[512];
|
|
|
|
entropy_ctx p_entropy;
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_md_info_t *md_info;
|
|
|
|
mbedtls_hmac_drbg_context ctx;
|
2014-01-31 10:16:57 +01:00
|
|
|
|
2023-03-20 10:44:44 +01:00
|
|
|
MD_PSA_INIT();
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_hmac_drbg_init(&ctx);
|
2014-01-31 10:16:57 +01:00
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
p_entropy.p = entropy->x;
|
|
|
|
p_entropy.len = entropy->len;
|
2014-01-31 10:16:57 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
md_info = mbedtls_md_info_from_type(md_alg);
|
|
|
|
TEST_ASSERT(md_info != NULL);
|
2014-04-17 16:07:20 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_seed(&ctx, md_info, mbedtls_test_entropy_func, &p_entropy,
|
|
|
|
custom->x, custom->len) == 0);
|
|
|
|
mbedtls_hmac_drbg_set_prediction_resistance(&ctx, MBEDTLS_HMAC_DRBG_PR_ON);
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_random_with_add(&ctx, my_output, output->len,
|
|
|
|
add1->x, add1->len) == 0);
|
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_random_with_add(&ctx, my_output, output->len,
|
|
|
|
add2->x, add2->len) == 0);
|
2014-01-31 10:16:57 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(memcmp(my_output, output->x, output->len) == 0);
|
2014-07-10 15:26:12 +02:00
|
|
|
|
|
|
|
exit:
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_hmac_drbg_free(&ctx);
|
2023-03-20 10:44:44 +01:00
|
|
|
MD_PSA_DONE();
|
2014-01-31 10:16:57 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_SELF_TEST */
|
2023-01-11 14:50:10 +01:00
|
|
|
void hmac_drbg_selftest()
|
2014-01-31 11:12:09 +01:00
|
|
|
{
|
2023-03-20 10:44:44 +01:00
|
|
|
MD_PSA_INIT();
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(mbedtls_hmac_drbg_self_test(1) == 0);
|
2023-03-20 10:44:44 +01:00
|
|
|
|
|
|
|
exit:
|
|
|
|
MD_PSA_DONE();
|
2014-01-31 11:12:09 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|