1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-08-08 19:02:06 +03:00

pki: Add ssh_pki_export_pubkey_rsa1().

This commit is contained in:
Andreas Schneider
2011-09-05 11:02:23 +02:00
parent 6901e25085
commit 808c7a9be4
5 changed files with 90 additions and 0 deletions

View File

@@ -958,6 +958,14 @@ int ssh_pki_export_pubkey_file(const ssh_key key,
return SSH_OK;
}
int ssh_pki_export_pubkey_rsa1(const ssh_key key,
const char *host,
char *rsa1,
size_t rsa1_len)
{
return pki_export_pubkey_rsa1(key, host, rsa1, rsa1_len);
}
int ssh_pki_export_signature_blob(const ssh_signature sig,
ssh_string *sig_blob)
{