espressif/esp-aws-iot Fleet Provisioning CSR private key PEM issue

slayzerout
Posts: 1
Joined: Tue Oct 22, 2024 2:11 pm

espressif/esp-aws-iot Fleet Provisioning CSR private key PEM issue

Postby slayzerout » Tue Oct 22, 2024 2:31 pm

I'm trying to adapt the AWS provisioning library to use in my prototype. AWS uses a different library than MQTT and also for cryptographic functions, and I already have all my code implemented using the native MQTT library from the SDK-IDF. I tried to adapt the AWS library to use the standard MQTT library from the SDK-IDF, but I was unsuccessful. The documentation for the fleet provisioning steps lacks some information on how to send the payloads and I'm not that familiar with it. I then took a new approach, generating the certificates using the example, exporting them in PEM format and connecting to the broker using the default lib. It seemed to be the simplest way, but AWS again uses a different lib than usual for PKCS11. I tried in several ways to adapt the code that generates the KEY pair to export the private key in PEM format and I couldn't. Below is the part of the code that I modified in order to try to extract the private key, but this key is not valid, it doesn't work for me to connect to the broker, giving the following error:
E (33905) esp-tls-mbedtls: mbedtls_pk_parse_keyfile returned -0x8980
E (33905) esp-tls-mbedtls: Failed to set client pki context
E (33905) esp-tls-mbedtls: Failed to set client configurations, returned [0x8019] (ESP_ERR_MBEDTLS_PK_PARSE_KEY_FAILED)
If I try to use the function:
mbedtls_pk_parse_key(&key, (const unsigned char *)client_key, strlen(client_key) + 1, NULL, 0, NULL, 0);
If I save this key on my computer and run:
openssl ec -in eccert.pem -check
it returns the following:
read EC key
EC Key Invalid! 4072CE0102000000:error:0800007B:elliptic curve routines:ossl_ec_key_private_check:invalid private key:crypto/ec/ec_key.c:607:

This indicates that the key is invalid. If I generate a set of keys using the standard SDK-IDF lib, export it and pass it through the same function, it returns that it is a valid key. If anyone can give me some insight, I would be grateful. Here is the code I use to extract the key:

[Codebox]
static int extractEcPublicKey(CK_SESSION_HANDLE p11Session,
mbedtls_ecdsa_context *pEcdsaContext,
CK_OBJECT_HANDLE publicKey)
{
CK_ATTRIBUTE ecTemplate = {0};
int mbedtlsRet = -1;
CK_RV pkcs11ret = CKR_OK;
CK_BYTE ecPoint[67] = {0};
CK_FUNCTION_LIST_PTR pP11FunctionList;

mbedtls_ecdsa_init(pEcdsaContext);
mbedtls_ecp_group_init(&(pEcdsaContext->grp));

pkcs11ret = C_GetFunctionList(&pP11FunctionList);

if (pkcs11ret != CKR_OK)
{
LogError(("Could not get a PKCS #11 function pointer."));
}
else
{
ecTemplate.type = CKA_EC_POINT;
ecTemplate.pValue = ecPoint;
ecTemplate.ulValueLen = sizeof(ecPoint);
pkcs11ret = pP11FunctionList->C_GetAttributeValue(p11Session, publicKey, &ecTemplate, 1);

if (pkcs11ret != CKR_OK)
{
LogError(("Failed to extract EC public key. Could not get attribute value. "
"C_GetAttributeValue failed with %lu.",
pkcs11ret));
}
}

if (pkcs11ret == CKR_OK)
{
mbedtlsRet = mbedtls_ecp_group_load(&(pEcdsaContext->grp), MBEDTLS_ECP_DP_SECP256R1);

if (mbedtlsRet != 0)
{
LogError(("Failed creating an EC key. "
"mbedtls_ecp_group_load failed: MbedTLS error = %d",
mbedtlsRet));
pkcs11ret = CKR_FUNCTION_FAILED;
}
else
{
mbedtlsRet = mbedtls_ecp_point_read_binary(&(pEcdsaContext->grp), &(pEcdsaContext->Q), &ecPoint[2], ecTemplate.ulValueLen - 2);

if (mbedtlsRet != 0)
{
LogError(("Failed reading EC public key point. "
"mbedtls_ecp_point_read_binary failed: MbedTLS error = %d",
mbedtlsRet));
pkcs11ret = CKR_FUNCTION_FAILED;
}
else
{
// Buffer for storing the PEM-encoded private key.
char pemBuffer[1600];
memset(pemBuffer, 0, sizeof(pemBuffer));

// Create a PK context to encode the private key.
mbedtls_pk_context pkContext;
mbedtls_pk_init(&pkContext);

// Assign the ECDSA context to the PK context.
mbedtlsRet = mbedtls_pk_setup(&pkContext, mbedtls_pk_info_from_type(MBEDTLS_PK_ECKEY));
if (mbedtlsRet == 0)
{
// Copy the private key data to the PK context.
mbedtls_ecp_keypair *ecKeyPair = mbedtls_pk_ec(pkContext);
mbedtls_ecp_group_copy(&ecKeyPair->grp, &pEcdsaContext->grp);
mbedtls_ecp_copy(&ecKeyPair->Q, &pEcdsaContext->Q);
mbedtls_mpi_copy(&ecKeyPair->d, &pEcdsaContext->d);

// Write the private key to PEM format.
mbedtlsRet = mbedtls_pk_write_key_pem(&pkContext, (unsigned char *)pemBuffer, sizeof(pemBuffer));

if (mbedtlsRet == 0)
{
printf("Extracted Private Key (PEM):\n%s\n", pemBuffer);
}
else
{
LogError(("Failed to write private key in PEM format. mbedtls_pk_write_key_pem failed: MbedTLS error = %d", mbedtlsRet));
}

mbedtls_pk_free(&pkContext);
}
else
{
LogError(("Failed to set up PK context. mbedtls_pk_setup failed: MbedTLS error = %d", mbedtlsRet));
}
}
}
}

// Free resources.
// mbedtls_ecdsa_free(pEcdsaContext);
// mbedtls_ecp_group_free(&(pEcdsaContext->grp));

return mbedtlsRet;
}
[/Codebox]

Who is online

Users browsing this forum: No registered users and 90 guests