Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 31 additions & 6 deletions src/wp_ecc_kmgmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -699,9 +699,21 @@ static int wp_ecc_get_params_enc_pub_key(wp_Ecc* ecc, OSSL_PARAM params[],
outLen = 1 + 2 * ((ecc->bits + 7) / 8);
}
else {
rc = wc_ecc_export_x963_ex(&ecc->key, p->data, &outLen, 0);
if (rc != 0) {
ok = 0;
if (ecc->key.type == ECC_PRIVATEKEY_ONLY) {
#ifdef ECC_TIMING_RESISTANT
rc = wc_ecc_make_pub_ex(&ecc->key, NULL, &ecc->rng);
#else
rc = wc_ecc_make_pub_ex(&ecc->key, NULL, NULL);
#endif
if (rc != 0){
ok = 0;
}
}
if (ok) {
rc = wc_ecc_export_x963_ex(&ecc->key, p->data, &outLen, 0);
if (rc != 0) {
ok = 0;
}
}
}
p->return_size = outLen;
Expand Down Expand Up @@ -1355,10 +1367,23 @@ static int wp_ecc_export_keypair(wp_Ecc* ecc, OSSL_PARAM* params, int* pIdx,
int i = *pIdx;
word32 outLen;

if (ecc->key.type == ECC_PRIVATEKEY_ONLY){
#ifdef ECC_TIMING_RESISTANT
rc = wc_ecc_make_pub_ex(&ecc->key, NULL, &ecc->rng);
#else
rc = wc_ecc_make_pub_ex(&ecc->key, NULL, NULL);
#endif
if (rc != 0){
ok = 0;
}
}

outLen = WP_ECC_PUBLIC_KEY_SIZE(ecc);
rc = wc_ecc_export_x963_ex(&ecc->key, data + *idx, &outLen, 0);
if (rc != 0) {
ok = 0;
if (ok) {
rc = wc_ecc_export_x963_ex(&ecc->key, data + *idx, &outLen, 0);
if (rc != 0) {
ok = 0;
}
}
if (ok) {
wp_param_set_octet_string_ptr(&params[i++], OSSL_PKEY_PARAM_PUB_KEY,
Expand Down
81 changes: 81 additions & 0 deletions test/test_ecc.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,16 @@
#include <openssl/core_names.h>

#ifdef WP_HAVE_ECC
/* prime256v1_EC_private_key*/
static const unsigned char ec_pder[] = {
0x30, 0x41, 0x02, 0x01, 0x00, 0x30, 0x13, 0x06, 0x07, 0x2A,
0x86, 0x48, 0xCE, 0x3D, 0x02, 0x01, 0x06, 0x08, 0x2A, 0x86,
0x48, 0xCE, 0x3D, 0x03, 0x01, 0x07, 0x04, 0x27, 0x30, 0x25,
0x02, 0x01, 0x01, 0x04, 0x20, 0x8D, 0x06, 0x5C, 0xA7, 0xA8,
0x0A, 0xA7, 0x61, 0x7B, 0x3A, 0xF7, 0xEF, 0x34, 0x32, 0x0A,
0x99, 0x31, 0xD5, 0x7F, 0xAE, 0x74, 0x23, 0x8E, 0x3D, 0x0D,
0x17, 0x48, 0x00, 0x74, 0x7A, 0x93, 0x89
};

#if defined(WP_HAVE_ECDSA) || defined(WP_HAVE_ECDH)

Expand Down Expand Up @@ -1576,4 +1586,75 @@ int test_ec_load_cert(void* data)
}
#endif /* WP_HAVE_ECDSA */

int test_ec_decode(void* data)
{
int err = 0;
EVP_PKEY_CTX *ctx = NULL;
PKCS8_PRIV_KEY_INFO* p8inf = NULL;
const unsigned char *p = NULL;
int len = 0;
EVP_PKEY* pkey1 = NULL;
EC_KEY* eckey1 = NULL;
const EC_GROUP* grp1 = NULL;
const BIGNUM* pk1 = NULL;
EVP_PKEY* pkey2 = NULL;
EC_KEY* eckey2 = NULL;
const EC_GROUP* grp2 = NULL;
const BIGNUM* pk2 = NULL;

(void)data;

p = &ec_pder[0];
len = sizeof(ec_pder);
p8inf = d2i_PKCS8_PRIV_KEY_INFO(NULL, (const unsigned char **)&p, len);
err = p8inf == NULL;

if (err == 0) {
PRINT_MSG("Decode with OpenSSL and Wolfprovider");
pkey1 = EVP_PKCS82PKEY_ex(p8inf, osslLibCtx, NULL);
pkey2 = EVP_PKCS82PKEY_ex(p8inf, wpLibCtx, NULL);
PKCS8_PRIV_KEY_INFO_free(p8inf);
err = (pkey1 == NULL || pkey2 == NULL);
}

if (err == 0) {
eckey1 = EVP_PKEY_get1_EC_KEY(pkey1);
eckey2 = EVP_PKEY_get1_EC_KEY(pkey2);
err = (eckey1 == NULL || eckey2 == NULL);
}

if (err == 0) {
grp1 = EC_KEY_get0_group(eckey1);
err = grp1 == NULL;
}
if (err == 0) {
pk1 = EC_KEY_get0_private_key(eckey1);
err = pk1 == NULL;
}

if (err == 0) {
grp2 = EC_KEY_get0_group(eckey2);
err = grp2 == NULL;
}
if (err == 0) {
pk2 = EC_KEY_get0_private_key(eckey2);
err = pk2 == NULL;
}

if (err == 0) {
err = EC_GROUP_cmp(grp1, grp2, NULL) != 0;
}
if (err == 0) {
err = BN_cmp(pk1, pk2) != 0;
}

EC_KEY_free(eckey1);
EC_KEY_free(eckey2);
EVP_PKEY_free(pkey1);
EVP_PKEY_free(pkey2);
EVP_PKEY_CTX_free(ctx);

return err;
}

#endif /* WP_HAVE_ECC */
2 changes: 2 additions & 0 deletions test/unit.c
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,8 @@ TEST_CASE test_case[] = {
TEST_DECL(test_ec_load_cert, NULL),
#endif /* WP_HAVE_ECDSA */

TEST_DECL(test_ec_decode, NULL),

#ifdef WP_HAVE_PBE
TEST_DECL(test_pbe, NULL),
#endif
Expand Down
1 change: 1 addition & 0 deletions test/unit.h
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,7 @@ int test_ec_load_key(void* data);
int test_ec_load_cert(void* data);
#endif /* WP_HAVE_ECDSA */

int test_ec_decode(void* data);
#endif /* WP_HAVE_ECC */

#ifdef WP_HAVE_PBE
Expand Down
Loading