| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- //---------------------------------------------------------------------------
- #ifndef PuttyIntfH
- #define PuttyIntfH
- #ifdef PUTTY_PUTTY_H
- #error Should be included sooner than "Putty.h" !!
- #endif
- //---------------------------------------------------------------------------
- struct charset_spec;
- typedef struct Filename Filename;
- #include "charset\Charset.h"
- //---------------------------------------------------------------------------
- typedef UINT_PTR SOCKET;
- //---------------------------------------------------------------------------
- extern "C"
- {
- void sk_init();
- int select_result(WPARAM wParam, LPARAM lParam);
- int socket_writable(SOCKET skt);
- void random_ref(void);
- void random_unref(void);
- void random_save_seed(void);
- int verify_host_key(char * hostname, int port, char * keytype, char * key);
- void store_host_key(char * hostname, int port, char * keytype, char * key);
- void display_banner(void * frontend, const char * banner, int size, int * log);
- void md5checksum(const char * buffer, int len, unsigned char output[16]);
- void * saferealloc(void * ptr, size_t n, size_t size);
- void * safemalloc(size_t n, size_t size);
- void safefree(void * ptr);
- void noise_regular(void);
- void * log_init(void * frontend, void * cfg);
- void putty_mungestr(const char * in, char * out);
- void putty_unmungestr(const char * in, char * out, int outlen);
- char * seedpath_ptr();
- int seedpath_size();
- void putty_get_seedpath(void);
- void agent_schedule_callback(void (* callback)(void *, void *, int),
- void * callback_ctx, void * data, int len);
- void read_utf8(charset_spec const *charset, long int input_chr,
- charset_state *state, void (*emit)(void *ctx, long int output), void *emitctx);
- void write_utf8(charset_spec const *charset, long int input_chr,
- charset_state *state, void (*emit)(void *ctx, long int output), void *emitctx);
- int key_type(const Filename * filename);
- char * key_type_to_str(int type);
- // -------------
- void ssh_close(void * handle);
- int get_ssh_version(void * handle);
- void call_ssh_timer(void * handle);
- int is_ssh(void * handle);
- void * get_ssh_frontend(void * handle);
- int get_ssh1_compressing(void * handle);
- const struct ssh_cipher * get_cipher(void * handle);
- const struct ssh2_cipher * get_cscipher(void * handle);
- const struct ssh2_cipher * get_sccipher(void * handle);
- const struct ssh_compress * get_cscomp(void * handle);
- const struct ssh_compress * get_sccomp(void * handle);
- int get_ssh_state(void * handle);
- int get_ssh_state_closed(void * handle);
- int get_ssh_exitcode(void * handle);
- int ssh_fallback_cmd(void * handle);
- const unsigned int * ssh2_remmaxpkt(void * handle);
- const unsigned int * ssh2_remwindow(void * handle);
- // -------------
- int from_backend(void * frontend, int is_stderr, char * data, int datalen);
- // from ssh.h for key generation
- struct RSAKey;
- struct dss_key;
- typedef void (* progfn_t) (void * param, int action, int phase, int progress);
- void random_add_heavynoise(void * noise, int length);
- int dsa_generate(struct dss_key * key, int bits, progfn_t pfn, void * pfnparam);
- int rsa_generate(struct RSAKey * key, int bits, progfn_t pfn, void * pfnparam);
- void rsa_fingerprint(char * str, int len, struct RSAKey * key);
- void base64_encode_atom(unsigned char * data, int n, char * out);
- int ssh2_save_userkey(char * filename, struct ssh2_userkey * key, char * passphrase);
- int export_ssh2(char * filename, int type, struct ssh2_userkey * key, char * passphrase);
- int saversakey(char * filename, struct RSAKey * key, char * passphrase);
- // -------------
- void SSHVerifyHostKey(void * frontend, char * host, int port, char * keytype,
- char * keystr, char * fingerprint);
- void SSHLogEvent(void * frontend, const char * string);
- void SSHConnectionFatal(void * frontend, char * string);
- void SSHFatalError(char * string);
- void SSHAskAlg(void * frontend, const char * AlgType, const char * AlgName);
- void SSHOldKeyfileWarning(void);
- void SSHDisplayBanner(void * frontend, const char * banner, int size, int * log);
- long RegOpenWinSCPKey(HKEY hKey, const char * lpSubKey, HKEY * phkResult);
- long RegCreateWinSCPKey(HKEY hKey, const char * lpSubKey, HKEY * phkResult);
- long RegQueryWinSCPValueEx(HKEY Key, const char * ValueName, unsigned long * Reserved,
- unsigned long * Type, unsigned char * Data, unsigned long * DataSize);
- long RegSetWinSCPValueEx(HKEY Key, const char * ValueName, unsigned long Reserved,
- unsigned long Type, const unsigned char * Data, unsigned long DataSize);
- long RegCloseWinSCPKey(HKEY Key);
- }
- //---------------------------------------------------------------------------
- extern const struct ssh_compress ssh_zlib;
- extern const struct ssh_cipher ssh_3des;
- extern const struct ssh_cipher ssh_des;
- extern const struct ssh_cipher ssh_blowfish_ssh1;
- extern const struct ssh2_ciphers ssh2_3des;
- extern const struct ssh2_ciphers ssh2_des;
- extern const struct ssh2_ciphers ssh2_aes;
- extern const struct ssh2_ciphers ssh2_blowfish;
- //---------------------------------------------------------------------------
- #define MPEXT
- #include "Putty.h"
- #include <SSH.h>
- #include <Proxy.h>
- //---------------------------------------------------------------------------
- #endif
|