Peter Schellenbach's patch: re-implement the PuTTY cryptographic
[u/mdw/putty] / scp.h
CommitLineData
07d9aa13 1/*
2 * scp.h
3 * Joris van Rantwijk, Aug 1999.
4 */
5
6
7/*
8 * Exported from scp.c
9 */
10extern int verbose;
11void ssh_get_password(char *prompt, char *str, int maxlen);
12
13
14/*
15 * Exported from scpssh.c
16 */
17char * ssh_init(char *host, int port, char *cmd, char **realhost);
18int ssh_recv(unsigned char *buf, int len);
19void ssh_send(unsigned char *buf, int len);
20void ssh_send_eof(void);
21
8f203108 22/*
23 * Exports from mscrypto.c
24 */
25#ifdef MSCRYPTOAPI
26int crypto_startup();
27void crypto_wrapup();
28#endif
29