diff options
author | Andreas Schneider <asn@cryptomilk.org> | 2011-08-12 11:04:30 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2011-08-12 11:04:30 +0200 |
commit | e92787395a2780ff71e1eb313fc37646f6361def (patch) | |
tree | c43d4461e7010ec758340766586771ac3b9ba498 /src | |
parent | a4a1af5bbf3cb7faee45d64124b148c0d1b86935 (diff) | |
download | libssh-e92787395a2780ff71e1eb313fc37646f6361def.tar.gz libssh-e92787395a2780ff71e1eb313fc37646f6361def.tar.xz libssh-e92787395a2780ff71e1eb313fc37646f6361def.zip |
pki: Fix doc of ssh_pki_import_privkey_base64().
Diffstat (limited to 'src')
-rw-r--r-- | src/pki.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -320,12 +320,15 @@ ssh_private_key ssh_pki_convert_key_to_privatekey(ssh_key key) { /** @brief import a base64 formated key from a memory c-string * - * @param key The key to fill, created with ssh_key_new() * @param session The ssh session * @param b64_key The c-string holding the base64 encoded key * @param passphrase The passphrase to decrypt the key, or NULL + * @param pkey A pointer where the key can be stored. You need + * to free the memory. * * @return SSH_ERROR in case of error, SSH_OK otherwise + * + * @see ssh_key_free() */ int ssh_pki_import_privkey_base64(ssh_session session, const char *b64_key, |