aboutsummaryrefslogtreecommitdiff
path: root/src/pki.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pki.c')
-rw-r--r--src/pki.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/pki.c b/src/pki.c
index 1ebc84a..ff8a5aa 100644
--- a/src/pki.c
+++ b/src/pki.c
@@ -730,7 +730,6 @@ int ssh_pki_import_pubkey_blob(const ssh_string key_blob,
ssh_buffer buffer;
ssh_string type_s = NULL;
enum ssh_keytypes_e type;
- int nid;
int rc;
if (key_blob == NULL || pkey == NULL) {
@@ -761,13 +760,6 @@ int ssh_pki_import_pubkey_blob(const ssh_string key_blob,
ssh_pki_log("Unknown key type found!");
goto fail;
}
- if (type == SSH_KEYTYPE_ECDSA) {
- nid = pki_key_ecdsa_nid_from_name(ssh_string_get_char(type_s));
- if (nid == -1) {
- ssh_pki_log("Unknown nid found!");
- goto fail;
- }
- }
ssh_string_free(type_s);
rc = pki_import_pubkey_buffer(buffer, type, pkey);