From f48a99b97c399174ad35b83a91df922f106ade13 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Wed, 23 Apr 2014 11:15:05 +0200 Subject: pki: Move ssh_pki_key_ecdsa_name() to the correct file. --- src/pki.c | 14 ++++++++++++++ src/pki_crypto.c | 14 -------------- 2 files changed, 14 insertions(+), 14 deletions(-) (limited to 'src') diff --git a/src/pki.c b/src/pki.c index 27fe53f6..0beab362 100644 --- a/src/pki.c +++ b/src/pki.c @@ -98,6 +98,20 @@ enum ssh_keytypes_e pki_privatekey_type_from_string(const char *privkey) { return SSH_KEYTYPE_UNKNOWN; } +/** + * @brief returns the ECDSA key name ("ecdsa-sha2-nistp256" for example) + * + * @param[in] key the ssh_key whose ECDSA name to get + * + * @returns the ECDSA key name ("ecdsa-sha2-nistp256" for example) + * + * @returns "unknown" if the ECDSA key name is not known + */ +const char *ssh_pki_key_ecdsa_name(const ssh_key key) +{ + return pki_key_ecdsa_nid_to_name(key->ecdsa_nid); +} + /** * @brief creates a new empty SSH key * @returns an empty ssh_key handle, or NULL on error. diff --git a/src/pki_crypto.c b/src/pki_crypto.c index 884c5382..903cb910 100644 --- a/src/pki_crypto.c +++ b/src/pki_crypto.c @@ -105,20 +105,6 @@ const char *pki_key_ecdsa_nid_to_name(int nid) return "unknown"; } -/** - * @brief returns the ECDSA key name ("ecdsa-sha2-nistp256" for example) - * - * @param[in] key the ssh_key whose ECDSA name to get - * - * @returns the ECDSA key name ("ecdsa-sha2-nistp256" for example) - * - * @returns "unknown" if the ECDSA key name is not known - */ -const char *ssh_pki_key_ecdsa_name(const ssh_key key) -{ - return pki_key_ecdsa_nid_to_name(key->ecdsa_nid); -} - static const char *pki_key_ecdsa_nid_to_char(int nid) { switch (nid) { -- cgit