Add an "Add Key" option to the systray menu in Pageant
[u/mdw/putty] / ssh.h
CommitLineData
37508af4 1#include <string.h>
2
e5574168 3/*
4 * Useful thing.
5 */
6#ifndef lenof
7#define lenof(x) ( (sizeof((x))) / (sizeof(*(x))))
8#endif
9
bea1ef5f 10#define SSH_CIPHER_IDEA 1
9697bfd2 11#define SSH_CIPHER_DES 2
bea1ef5f 12#define SSH_CIPHER_3DES 3
13#define SSH_CIPHER_BLOWFISH 6
14
e5574168 15#ifdef MSCRYPTOAPI
16#define APIEXTRA 8
17#else
18#define APIEXTRA 0
19#endif
20
7cca0d81 21/*
22 * A Bignum is stored as a sequence of `unsigned short' words. The
23 * first tells how many remain; the remaining ones are digits, LS
24 * first.
25 */
26typedef unsigned short *Bignum;
27
374330e2 28struct RSAKey {
29 int bits;
30 int bytes;
8f203108 31#ifdef MSCRYPTOAPI
32 unsigned long exponent;
33 unsigned char *modulus;
34#else
7cca0d81 35 Bignum modulus;
36 Bignum exponent;
37 Bignum private_exponent;
8f203108 38#endif
5c58ad2d 39 char *comment;
374330e2 40};
41
42int makekey(unsigned char *data, struct RSAKey *result,
7cca0d81 43 unsigned char **keystr, int order);
44int makeprivate(unsigned char *data, struct RSAKey *result);
374330e2 45void rsaencrypt(unsigned char *data, int length, struct RSAKey *key);
7cca0d81 46Bignum rsadecrypt(Bignum input, struct RSAKey *key);
47void rsasign(unsigned char *data, int length, struct RSAKey *key);
48void rsasanitise(struct RSAKey *key);
374330e2 49int rsastr_len(struct RSAKey *key);
50void rsastr_fmt(char *str, struct RSAKey *key);
1c2a93c4 51void rsa_fingerprint(char *str, int len, struct RSAKey *key);
5c58ad2d 52void freersakey(struct RSAKey *key);
374330e2 53
54typedef unsigned int word32;
55typedef unsigned int uint32;
56
8160fbfc 57unsigned long crc32(const void *s, size_t len);
374330e2 58
48672163 59typedef struct {
60 uint32 h[4];
61} MD5_Core_State;
62
374330e2 63struct MD5Context {
8f203108 64#ifdef MSCRYPTOAPI
65 unsigned long hHash;
66#else
48672163 67 MD5_Core_State core;
bb093ca7 68 unsigned char block[64];
48672163 69 int blkused;
70 uint32 lenhi, lenlo;
8f203108 71#endif
374330e2 72};
73
74void MD5Init(struct MD5Context *context);
75void MD5Update(struct MD5Context *context, unsigned char const *buf,
76 unsigned len);
77void MD5Final(unsigned char digest[16], struct MD5Context *context);
78
e5574168 79typedef struct {
80 uint32 h[5];
81 unsigned char block[64];
82 int blkused;
83 uint32 lenhi, lenlo;
84} SHA_State;
85
86void SHA_Init(SHA_State *s);
87void SHA_Bytes(SHA_State *s, void *p, int len);
88void SHA_Final(SHA_State *s, unsigned char *output);
7cca0d81 89void SHA_Simple(void *p, int len, unsigned char *output);
e5574168 90
374330e2 91struct ssh_cipher {
d39f364a 92 void (*sesskey)(unsigned char *key); /* for ssh 1 */
93 void (*setcsiv)(unsigned char *key); /* for ssh 2 */
94 void (*setcskey)(unsigned char *key); /* for ssh 2 */
95 void (*setsciv)(unsigned char *key); /* for ssh 2 */
96 void (*setsckey)(unsigned char *key); /* for ssh 2 */
374330e2 97 void (*encrypt)(unsigned char *blk, int len);
98 void (*decrypt)(unsigned char *blk, int len);
e5574168 99 char *name;
100 int blksize;
101};
102
103struct ssh_mac {
d39f364a 104 void (*setcskey)(unsigned char *key);
105 void (*setsckey)(unsigned char *key);
e5574168 106 void (*generate)(unsigned char *blk, int len, unsigned long seq);
107 int (*verify)(unsigned char *blk, int len, unsigned long seq);
108 char *name;
109 int len;
110};
111
112struct ssh_kex {
7cca0d81 113 /*
114 * Plugging in another KEX algorithm requires structural chaos,
115 * so it's hard to abstract them into nice little structures
116 * like this. Hence, for the moment, this is just a
117 * placeholder. I claim justification in the fact that OpenSSH
118 * does this too :-)
119 */
e5574168 120 char *name;
121};
122
123struct ssh_hostkey {
7cca0d81 124 void (*setkey)(char *data, int len);
125 char *(*fmtkey)(void);
d5859615 126 char *(*fingerprint)(void);
7cca0d81 127 int (*verifysig)(char *sig, int siglen, char *data, int datalen);
e5574168 128 char *name;
d5859615 129 char *keytype; /* for host key cache */
e5574168 130};
131
132struct ssh_compress {
133 char *name;
374330e2 134};
135
8f203108 136#ifndef MSCRYPTOAPI
374330e2 137void SHATransform(word32 *digest, word32 *data);
8f203108 138#endif
374330e2 139
140int random_byte(void);
141void random_add_noise(void *noise, int length);
c5e9c988 142
143void logevent (char *);
e5574168 144
e5574168 145Bignum newbn(int length);
7cca0d81 146Bignum copybn(Bignum b);
e5574168 147void freebn(Bignum b);
148void modpow(Bignum base, Bignum exp, Bignum mod, Bignum result);
7cca0d81 149void modmul(Bignum a, Bignum b, Bignum mod, Bignum result);
150void decbn(Bignum n);
151extern Bignum Zero, One;
152int ssh1_read_bignum(unsigned char *data, Bignum *result);
5c58ad2d 153int ssh1_bignum_bitcount(Bignum bn);
154int ssh1_bignum_length(Bignum bn);
155int bignum_byte(Bignum bn, int i);
156int ssh1_write_bignum(void *data, Bignum bn);
e5574168 157
158Bignum dh_create_e(void);
159Bignum dh_find_K(Bignum f);
7cca0d81 160
161int loadrsakey(char *filename, struct RSAKey *key, char *passphrase);
a52f067e 162int rsakey_encrypted(char *filename, char **comment);
7cca0d81 163
164void des3_decrypt_pubkey(unsigned char *key,
5c58ad2d 165 unsigned char *blk, int len);