2013-09-15 13:01:22 +02:00
|
|
|
/* BEGIN_HEADER */
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/pk.h"
|
|
|
|
#include "mbedtls/pem.h"
|
|
|
|
#include "mbedtls/oid.h"
|
2023-01-26 10:00:55 +01:00
|
|
|
#include "mbedtls/ecp.h"
|
2013-09-15 13:01:22 +02:00
|
|
|
/* END_HEADER */
|
|
|
|
|
|
|
|
/* BEGIN_DEPENDENCIES
|
2015-04-08 12:49:31 +02:00
|
|
|
* depends_on:MBEDTLS_PK_PARSE_C:MBEDTLS_BIGNUM_C
|
2013-09-15 13:01:22 +02:00
|
|
|
* END_DEPENDENCIES
|
|
|
|
*/
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_RSA_C:MBEDTLS_FS_IO */
|
2023-01-11 14:50:10 +01:00
|
|
|
void pk_parse_keyfile_rsa(char *key_file, char *password, int result)
|
2013-09-15 13:01:22 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_pk_context ctx;
|
2013-09-15 13:01:22 +02:00
|
|
|
int res;
|
|
|
|
char *pwd = password;
|
|
|
|
|
2023-03-17 11:59:12 +01:00
|
|
|
MD_PSA_INIT();
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_pk_init(&ctx);
|
2013-09-15 13:01:22 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (strcmp(pwd, "NULL") == 0) {
|
2013-09-15 13:01:22 +02:00
|
|
|
pwd = NULL;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2013-09-15 13:01:22 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
res = mbedtls_pk_parse_keyfile(&ctx, key_file, pwd,
|
|
|
|
mbedtls_test_rnd_std_rand, NULL);
|
2013-09-15 13:01:22 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(res == result);
|
2013-09-15 13:01:22 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (res == 0) {
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_rsa_context *rsa;
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(mbedtls_pk_can_do(&ctx, MBEDTLS_PK_RSA));
|
|
|
|
rsa = mbedtls_pk_rsa(ctx);
|
|
|
|
TEST_ASSERT(mbedtls_rsa_check_privkey(rsa) == 0);
|
2013-09-15 13:01:22 +02:00
|
|
|
}
|
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_pk_free(&ctx);
|
2023-03-17 11:59:12 +01:00
|
|
|
MD_PSA_DONE();
|
2013-09-15 13:01:22 +02:00
|
|
|
}
|
2023-03-17 11:59:12 +01:00
|
|
|
|
2013-09-15 13:01:22 +02:00
|
|
|
/* END_CASE */
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_RSA_C:MBEDTLS_FS_IO */
|
2023-01-11 14:50:10 +01:00
|
|
|
void pk_parse_public_keyfile_rsa(char *key_file, int result)
|
2013-09-15 13:01:22 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_pk_context ctx;
|
2013-09-15 13:01:22 +02:00
|
|
|
int res;
|
|
|
|
|
2023-03-17 11:59:12 +01:00
|
|
|
MD_PSA_INIT();
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_pk_init(&ctx);
|
2013-09-15 13:01:22 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
res = mbedtls_pk_parse_public_keyfile(&ctx, key_file);
|
2013-09-15 13:01:22 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(res == result);
|
2013-09-15 13:01:22 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (res == 0) {
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_rsa_context *rsa;
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(mbedtls_pk_can_do(&ctx, MBEDTLS_PK_RSA));
|
|
|
|
rsa = mbedtls_pk_rsa(ctx);
|
|
|
|
TEST_ASSERT(mbedtls_rsa_check_pubkey(rsa) == 0);
|
2013-09-15 13:01:22 +02:00
|
|
|
}
|
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_pk_free(&ctx);
|
2023-03-17 11:59:12 +01:00
|
|
|
MD_PSA_DONE();
|
2013-09-15 13:01:22 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_FS_IO:MBEDTLS_ECP_C */
|
2023-01-11 14:50:10 +01:00
|
|
|
void pk_parse_public_keyfile_ec(char *key_file, int result)
|
2013-09-15 13:01:22 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_pk_context ctx;
|
2013-09-15 13:01:22 +02:00
|
|
|
int res;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_pk_init(&ctx);
|
2013-09-15 13:01:22 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
res = mbedtls_pk_parse_public_keyfile(&ctx, key_file);
|
2013-09-15 13:01:22 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(res == result);
|
2013-09-15 13:01:22 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (res == 0) {
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_keypair *eckey;
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(mbedtls_pk_can_do(&ctx, MBEDTLS_PK_ECKEY));
|
|
|
|
eckey = mbedtls_pk_ec(ctx);
|
|
|
|
TEST_ASSERT(mbedtls_ecp_check_pubkey(&eckey->grp, &eckey->Q) == 0);
|
2013-09-15 13:01:22 +02:00
|
|
|
}
|
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_pk_free(&ctx);
|
2013-09-15 13:01:22 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_FS_IO:MBEDTLS_ECP_C */
|
2023-01-11 14:50:10 +01:00
|
|
|
void pk_parse_keyfile_ec(char *key_file, char *password, int result)
|
2013-09-15 13:01:22 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_pk_context ctx;
|
2013-09-15 13:01:22 +02:00
|
|
|
int res;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_pk_init(&ctx);
|
2013-09-15 13:01:22 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
res = mbedtls_pk_parse_keyfile(&ctx, key_file, password,
|
|
|
|
mbedtls_test_rnd_std_rand, NULL);
|
2013-09-15 13:01:22 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(res == result);
|
2013-09-15 13:01:22 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (res == 0) {
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_keypair *eckey;
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(mbedtls_pk_can_do(&ctx, MBEDTLS_PK_ECKEY));
|
|
|
|
eckey = mbedtls_pk_ec(ctx);
|
|
|
|
TEST_ASSERT(mbedtls_ecp_check_privkey(&eckey->grp, &eckey->d) == 0);
|
2013-09-15 13:01:22 +02:00
|
|
|
}
|
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_pk_free(&ctx);
|
2013-09-15 13:01:22 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2020-02-10 10:50:16 +01:00
|
|
|
/* BEGIN_CASE */
|
2023-01-11 14:50:10 +01:00
|
|
|
void pk_parse_key(data_t *buf, int result)
|
2013-09-15 13:01:22 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_pk_context pk;
|
2013-09-15 13:01:22 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_pk_init(&pk);
|
2013-09-15 13:01:22 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
TEST_ASSERT(mbedtls_pk_parse_key(&pk, buf->x, buf->len, NULL, 0,
|
|
|
|
mbedtls_test_rnd_std_rand, NULL) == result);
|
2013-09-15 13:01:22 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_pk_free(&pk);
|
2013-09-15 13:01:22 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|