use correct data type for key_str in get_key To fix, change the below line in `lib/openssl/eccx08_cmd_defns.c` ```ATCA_STATUS status = ATCA_GEN_FAIL; char* key_str[32]; EVP_PKEY* pkey; DEBUG_ENGINE("Entered\n"); ``` to ```ATCA_STATUS status = ATCA_GEN_FAIL; char key_str[32]; EVP_PKEY* pkey; DEBUG_ENGINE("Entered\n"); ```