aboutsummaryrefslogtreecommitdiff
path: root/src/pki_crypto.c
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2014-04-23 11:15:05 +0200
committerAndreas Schneider <asn@cryptomilk.org>2014-04-23 11:15:05 +0200
commitf48a99b97c399174ad35b83a91df922f106ade13 (patch)
tree75675c1996f36adbb8f12d21e715c81e27543f78 /src/pki_crypto.c
parent11cfb2903eb319d32a2432a015c61506f50dc78b (diff)
downloadlibssh-f48a99b97c399174ad35b83a91df922f106ade13.tar.gz
libssh-f48a99b97c399174ad35b83a91df922f106ade13.tar.xz
libssh-f48a99b97c399174ad35b83a91df922f106ade13.zip
pki: Move ssh_pki_key_ecdsa_name() to the correct file.
Diffstat (limited to 'src/pki_crypto.c')
-rw-r--r--src/pki_crypto.c14
1 files changed, 0 insertions, 14 deletions
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) {