aboutsummaryrefslogtreecommitdiffstats
path: root/lib/crypto/c_src/eddsa.c
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2019-02-04 11:52:27 +0100
committerGitHub <[email protected]>2019-02-04 11:52:27 +0100
commit784fb8d859fe3277435c8046b55a65a80313c6f5 (patch)
treec29a454b304df35e0a40320b3458a8e567168626 /lib/crypto/c_src/eddsa.c
parentbc0aef4bb631acbf0b8e8fd8ecc51cb1286ed8c9 (diff)
parent0b67f754bd6e0f22b1b7e1c9b2270f8118a66f38 (diff)
downloadotp-784fb8d859fe3277435c8046b55a65a80313c6f5.tar.gz
otp-784fb8d859fe3277435c8046b55a65a80313c6f5.tar.bz2
otp-784fb8d859fe3277435c8046b55a65a80313c6f5.zip
Merge pull request #2095 from hogand/crypto/revamp-files
crypto: revamp C code [WIP] OTP-14732
Diffstat (limited to 'lib/crypto/c_src/eddsa.c')
-rw-r--r--lib/crypto/c_src/eddsa.c38
1 files changed, 25 insertions, 13 deletions
diff --git a/lib/crypto/c_src/eddsa.c b/lib/crypto/c_src/eddsa.c
index 0fdada9677..0c89f9f6db 100644
--- a/lib/crypto/c_src/eddsa.c
+++ b/lib/crypto/c_src/eddsa.c
@@ -24,28 +24,40 @@
int get_eddsa_key(ErlNifEnv* env, int public, ERL_NIF_TERM key, EVP_PKEY **pkey)
{
/* key=[K] */
+ EVP_PKEY *result;
ERL_NIF_TERM head, tail, tail2, algo;
ErlNifBinary bin;
int type;
- if (!enif_get_list_cell(env, key, &head, &tail)
- || !enif_inspect_binary(env, head, &bin)
- || !enif_get_list_cell(env, tail, &algo, &tail2)
- || !enif_is_empty_list(env, tail2)) {
- return 0;
+ if (!enif_get_list_cell(env, key, &head, &tail))
+ goto err;
+ if (!enif_inspect_binary(env, head, &bin))
+ goto err;
+ if (!enif_get_list_cell(env, tail, &algo, &tail2))
+ goto err;
+ if (!enif_is_empty_list(env, tail2))
+ goto err;
+
+ if (algo == atom_ed25519) {
+ type = EVP_PKEY_ED25519;
+ } else if (algo == atom_ed448) {
+ type = EVP_PKEY_ED448;
+ } else {
+ goto err;
}
- if (algo == atom_ed25519) type = EVP_PKEY_ED25519;
- else if (algo == atom_ed448) type = EVP_PKEY_ED448;
- else
- return 0;
if (public)
- *pkey = EVP_PKEY_new_raw_public_key(type, NULL, bin.data, bin.size);
+ result = EVP_PKEY_new_raw_public_key(type, NULL, bin.data, bin.size);
else
- *pkey = EVP_PKEY_new_raw_private_key(type, NULL, bin.data, bin.size);
+ result = EVP_PKEY_new_raw_private_key(type, NULL, bin.data, bin.size);
+
+ if (result == NULL)
+ goto err;
- if (!pkey)
- return 0;
+ *pkey = result;
return 1;
+
+ err:
+ return 0;
}
#endif