Win32-OpenSSH/contrib/win32/ssh-pubkey/pubkeyfd.h

14 lines
389 B
C
Raw Normal View History

2016-05-06 00:14:22 +02:00
#ifndef PUBKEYFD_H
#define PUBKEYFD_H
2016-05-09 06:05:49 +02:00
#include "ssh-pubkeydefs.h"
2016-05-07 00:04:52 +02:00
2016-05-06 08:08:49 +02:00
int ssh_add_pubkey(int sock, struct sshkey *key, const char *comment, const char* password);
2016-05-06 00:14:22 +02:00
int ssh_list_pubkeys(int sock, struct ssh_identitylist **idlp);
int ssh_remove_pubkey(int sock, struct sshkey *key);
int ssh_remove_pubkey_by_fp(int sock, const char *fingerprint);
int ssh_remove_all_pubkeys(int sock);
#endif