diff options
author | Andreas Schneider <asn@cryptomilk.org> | 2011-09-18 22:04:03 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2011-10-29 19:58:28 +0200 |
commit | 2c04994443384224161d895d00255b5788e8376d (patch) | |
tree | d07f4eb26408d4e0f8b76d96212e11f23b20f699 /include/libssh/pki_priv.h | |
parent | e799c0ce7d046606d9391d826461c2782f072fa0 (diff) | |
download | libssh-2c04994443384224161d895d00255b5788e8376d.tar.gz libssh-2c04994443384224161d895d00255b5788e8376d.tar.xz libssh-2c04994443384224161d895d00255b5788e8376d.zip |
pki: Add a ssh_key_cmp() function.
Diffstat (limited to 'include/libssh/pki_priv.h')
-rw-r--r-- | include/libssh/pki_priv.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/libssh/pki_priv.h b/include/libssh/pki_priv.h index 6be297e..7a664cf 100644 --- a/include/libssh/pki_priv.h +++ b/include/libssh/pki_priv.h @@ -36,6 +36,9 @@ void _ssh_pki_log(const char *function, ssh_key pki_key_dup(const ssh_key key, int demote); int pki_key_generate_rsa(ssh_key key, int parameter); int pki_key_generate_dss(ssh_key key, int parameter); +int pki_key_compare(const ssh_key k1, + const ssh_key k2, + enum ssh_keycmp_e what); /* SSH Private Key Functions */ enum ssh_keytypes_e pki_privatekey_type_from_string(const char *privkey); |