diff options
author | Hans Nilsson <[email protected]> | 2017-11-28 12:15:05 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-12-01 14:47:34 +0100 |
commit | bd4fc9ce5e7fc0feab83e0452511dfdd17ae4ec8 (patch) | |
tree | 587eaa8a1e2cbe61ac65691a871d70e68925cb66 /lib/crypto/c_src/crypto.c | |
parent | a3af8c0cfbe88579c1bd2779860fa7980e219c0c (diff) | |
download | otp-bd4fc9ce5e7fc0feab83e0452511dfdd17ae4ec8.tar.gz otp-bd4fc9ce5e7fc0feab83e0452511dfdd17ae4ec8.tar.bz2 otp-bd4fc9ce5e7fc0feab83e0452511dfdd17ae4ec8.zip |
crypto: fix pubkey_to_privkey
Diffstat (limited to 'lib/crypto/c_src/crypto.c')
-rw-r--r-- | lib/crypto/c_src/crypto.c | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/lib/crypto/c_src/crypto.c b/lib/crypto/c_src/crypto.c index ca6917d56e..3914a48679 100644 --- a/lib/crypto/c_src/crypto.c +++ b/lib/crypto/c_src/crypto.c @@ -4825,9 +4825,10 @@ static ERL_NIF_TERM privkey_to_pubkey_nif(ErlNifEnv* env, int argc, const ERL_NI } else if (argv[0] == atom_ecdsa) { #if defined(HAVE_EC) - EC_KEY *ec = EVP_PKEY_get1_EC_KEY(pkey); - if (ec) { - /* Example of result: + /* not yet implemented + EC_KEY *ec = EVP_PKEY_get1_EC_KEY(pkey); + if (ec) { + / * Example of result: { Curve = {Field, Prime, Point, Order, CoFactor} = { @@ -4841,7 +4842,7 @@ static ERL_NIF_TERM privkey_to_pubkey_nif(ErlNifEnv* env, int argc, const ERL_NI CoFactor = <<1>> }, Key = <<151,...,62>> - } + } or { Curve = @@ -4852,16 +4853,13 @@ static ERL_NIF_TERM privkey_to_pubkey_nif(ErlNifEnv* env, int argc, const ERL_NI }, Key } - */ + * / EVP_PKEY_free(pkey); - return atom_notsup; - } -#else - EVP_PKEY_free(pkey); - return atom_notsup; + return enif_make_list_from_array(env, ..., ...); + */ #endif } - + if (pkey) EVP_PKEY_free(pkey); return enif_make_badarg(env); } |