123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef DROPBEAR_KEYIMPORT_H_
- #define DROPBEAR_KEYIMPORT_H_
- #include "includes.h"
- #include "signkey.h"
- enum {
- KEYFILE_DROPBEAR,
- KEYFILE_OPENSSH,
- KEYFILE_SSHCOM
- };
- int import_write(const char *filename, sign_key *key, const char *passphrase,
- int filetype);
- sign_key *import_read(const char *filename, const char *passphrase, int filetype);
- int import_encrypted(const char* filename, int filetype);
- #endif
|