Skip to content
Snippets Groups Projects
Commit 2084500f authored by daniil.frolov's avatar daniil.frolov
Browse files

..

parent a26a4b0c
No related branches found
No related tags found
1 merge request!296ecdsa-check-failing-fastfix
Pipeline #40963 passed with stage
in 10 minutes and 51 seconds
......@@ -783,6 +783,9 @@ int dap_enc_key_deserialize_pub_key(dap_enc_key_t *a_key, const uint8_t *a_buf,
case DAP_ENC_KEY_TYPE_SIG_FALCON:
//case DAP_ENC_KEY_TYPE_SIG_SHIPOVNIK:
case DAP_ENC_KEY_TYPE_SIG_SPHINCSPLUS:
if(s_callbacks[a_key->type].del_pub_key == NULL || s_callbacks[a_key->type].deser_pub_key == NULL)
return -2;
if (a_key->pub_key_data)
s_callbacks[a_key->type].del_pub_key(a_key->pub_key_data);
......@@ -794,6 +797,8 @@ int dap_enc_key_deserialize_pub_key(dap_enc_key_t *a_key, const uint8_t *a_buf,
a_key->pub_key_data_size = s_callbacks[a_key->type].deser_pub_key_size(NULL);
break;
case DAP_ENC_KEY_TYPE_SIG_ECDSA:
if(s_callbacks[a_key->type].del_pub_key == NULL)
return -2;
s_callbacks[a_key->type].del_pub_key(a_key->pub_key_data);
a_key->pub_key_data = s_callbacks[a_key->type].deser_pub_key_ex(a_buf, a_key, a_buflen);
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment