1999-01-08 16:10:19 +03:00
|
|
|
#include <string.h>
|
|
|
|
|
2000-12-12 13:33:13 +03:00
|
|
|
#include "puttymem.h"
|
|
|
|
|
2000-09-05 18:28:17 +04:00
|
|
|
/*
|
|
|
|
* Useful thing.
|
|
|
|
*/
|
|
|
|
#ifndef lenof
|
|
|
|
#define lenof(x) ( (sizeof((x))) / (sizeof(*(x))))
|
|
|
|
#endif
|
|
|
|
|
1999-07-06 23:42:57 +04:00
|
|
|
#define SSH_CIPHER_IDEA 1
|
1999-10-25 12:59:40 +04:00
|
|
|
#define SSH_CIPHER_DES 2
|
1999-07-06 23:42:57 +04:00
|
|
|
#define SSH_CIPHER_3DES 3
|
|
|
|
#define SSH_CIPHER_BLOWFISH 6
|
|
|
|
|
2000-09-05 18:28:17 +04:00
|
|
|
#ifdef MSCRYPTOAPI
|
|
|
|
#define APIEXTRA 8
|
|
|
|
#else
|
|
|
|
#define APIEXTRA 0
|
|
|
|
#endif
|
|
|
|
|
2001-03-01 20:41:26 +03:00
|
|
|
#ifndef BIGNUM_INTERNAL
|
|
|
|
typedef void *Bignum;
|
|
|
|
#endif
|
2000-09-07 20:33:49 +04:00
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
struct RSAKey {
|
|
|
|
int bits;
|
|
|
|
int bytes;
|
2000-03-24 12:45:49 +03:00
|
|
|
#ifdef MSCRYPTOAPI
|
|
|
|
unsigned long exponent;
|
|
|
|
unsigned char *modulus;
|
|
|
|
#else
|
2000-09-07 20:33:49 +04:00
|
|
|
Bignum modulus;
|
|
|
|
Bignum exponent;
|
|
|
|
Bignum private_exponent;
|
2000-10-18 19:00:36 +04:00
|
|
|
Bignum p;
|
|
|
|
Bignum q;
|
|
|
|
Bignum iqmp;
|
2001-03-03 14:54:34 +03:00
|
|
|
#endif
|
|
|
|
char *comment;
|
2000-10-18 19:00:36 +04:00
|
|
|
};
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
int makekey(unsigned char *data, struct RSAKey *result,
|
2000-09-07 20:33:49 +04:00
|
|
|
unsigned char **keystr, int order);
|
|
|
|
int makeprivate(unsigned char *data, struct RSAKey *result);
|
1999-01-08 16:02:13 +03:00
|
|
|
void rsaencrypt(unsigned char *data, int length, struct RSAKey *key);
|
2000-09-07 20:33:49 +04:00
|
|
|
Bignum rsadecrypt(Bignum input, struct RSAKey *key);
|
|
|
|
void rsasign(unsigned char *data, int length, struct RSAKey *key);
|
|
|
|
void rsasanitise(struct RSAKey *key);
|
1999-01-08 16:02:13 +03:00
|
|
|
int rsastr_len(struct RSAKey *key);
|
|
|
|
void rsastr_fmt(char *str, struct RSAKey *key);
|
2000-09-26 18:26:21 +04:00
|
|
|
void rsa_fingerprint(char *str, int len, struct RSAKey *key);
|
2000-09-14 19:02:50 +04:00
|
|
|
void freersakey(struct RSAKey *key);
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
typedef unsigned int word32;
|
|
|
|
typedef unsigned int uint32;
|
|
|
|
|
2000-03-08 19:13:32 +03:00
|
|
|
unsigned long crc32(const void *s, size_t len);
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2000-04-04 18:47:22 +04:00
|
|
|
typedef struct {
|
|
|
|
uint32 h[4];
|
|
|
|
} MD5_Core_State;
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
struct MD5Context {
|
2000-03-24 12:45:49 +03:00
|
|
|
#ifdef MSCRYPTOAPI
|
|
|
|
unsigned long hHash;
|
|
|
|
#else
|
2000-04-04 18:47:22 +04:00
|
|
|
MD5_Core_State core;
|
2000-04-04 18:51:17 +04:00
|
|
|
unsigned char block[64];
|
2000-04-04 18:47:22 +04:00
|
|
|
int blkused;
|
|
|
|
uint32 lenhi, lenlo;
|
2000-03-24 12:45:49 +03:00
|
|
|
#endif
|
1999-01-08 16:02:13 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
void MD5Init(struct MD5Context *context);
|
|
|
|
void MD5Update(struct MD5Context *context, unsigned char const *buf,
|
|
|
|
unsigned len);
|
|
|
|
void MD5Final(unsigned char digest[16], struct MD5Context *context);
|
|
|
|
|
2000-09-05 18:28:17 +04:00
|
|
|
typedef struct {
|
|
|
|
uint32 h[5];
|
|
|
|
unsigned char block[64];
|
|
|
|
int blkused;
|
|
|
|
uint32 lenhi, lenlo;
|
|
|
|
} SHA_State;
|
|
|
|
|
|
|
|
void SHA_Init(SHA_State *s);
|
|
|
|
void SHA_Bytes(SHA_State *s, void *p, int len);
|
|
|
|
void SHA_Final(SHA_State *s, unsigned char *output);
|
2000-09-07 20:33:49 +04:00
|
|
|
void SHA_Simple(void *p, int len, unsigned char *output);
|
2000-09-05 18:28:17 +04:00
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
struct ssh_cipher {
|
2000-09-05 20:23:36 +04:00
|
|
|
void (*sesskey)(unsigned char *key); /* for ssh 1 */
|
2001-03-02 16:55:23 +03:00
|
|
|
void (*encrypt)(unsigned char *blk, int len);
|
|
|
|
void (*decrypt)(unsigned char *blk, int len);
|
|
|
|
int blksize;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ssh2_cipher {
|
2000-09-05 20:23:36 +04:00
|
|
|
void (*setcsiv)(unsigned char *key); /* for ssh 2 */
|
|
|
|
void (*setcskey)(unsigned char *key); /* for ssh 2 */
|
|
|
|
void (*setsciv)(unsigned char *key); /* for ssh 2 */
|
|
|
|
void (*setsckey)(unsigned char *key); /* for ssh 2 */
|
1999-01-08 16:02:13 +03:00
|
|
|
void (*encrypt)(unsigned char *blk, int len);
|
|
|
|
void (*decrypt)(unsigned char *blk, int len);
|
2000-09-05 18:28:17 +04:00
|
|
|
char *name;
|
|
|
|
int blksize;
|
2001-03-01 20:45:31 +03:00
|
|
|
int keylen;
|
2000-09-05 18:28:17 +04:00
|
|
|
};
|
|
|
|
|
2001-03-02 16:55:23 +03:00
|
|
|
struct ssh2_ciphers {
|
|
|
|
int nciphers;
|
2001-03-03 14:54:34 +03:00
|
|
|
const struct ssh2_cipher *const *list;
|
2001-03-02 16:55:23 +03:00
|
|
|
};
|
|
|
|
|
2000-09-05 18:28:17 +04:00
|
|
|
struct ssh_mac {
|
2000-09-05 20:23:36 +04:00
|
|
|
void (*setcskey)(unsigned char *key);
|
|
|
|
void (*setsckey)(unsigned char *key);
|
2000-09-05 18:28:17 +04:00
|
|
|
void (*generate)(unsigned char *blk, int len, unsigned long seq);
|
|
|
|
int (*verify)(unsigned char *blk, int len, unsigned long seq);
|
|
|
|
char *name;
|
|
|
|
int len;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ssh_kex {
|
2000-09-07 20:33:49 +04:00
|
|
|
/*
|
|
|
|
* Plugging in another KEX algorithm requires structural chaos,
|
|
|
|
* so it's hard to abstract them into nice little structures
|
|
|
|
* like this. Hence, for the moment, this is just a
|
|
|
|
* placeholder. I claim justification in the fact that OpenSSH
|
|
|
|
* does this too :-)
|
|
|
|
*/
|
2000-09-05 18:28:17 +04:00
|
|
|
char *name;
|
|
|
|
};
|
|
|
|
|
2000-12-02 15:48:15 +03:00
|
|
|
struct ssh_signkey {
|
|
|
|
void *(*newkey)(char *data, int len);
|
|
|
|
void (*freekey)(void *key);
|
|
|
|
char *(*fmtkey)(void *key);
|
2001-03-03 14:54:34 +03:00
|
|
|
unsigned char *(*public_blob)(void *key, int *len);
|
|
|
|
unsigned char *(*private_blob)(void *key, int *len);
|
|
|
|
void *(*createkey)(unsigned char *pub_blob, int pub_len,
|
|
|
|
unsigned char *priv_blob, int priv_len);
|
2001-03-03 18:31:35 +03:00
|
|
|
void *(*openssh_createkey)(unsigned char **blob, int *len);
|
2000-12-02 15:48:15 +03:00
|
|
|
char *(*fingerprint)(void *key);
|
|
|
|
int (*verifysig)(void *key, char *sig, int siglen,
|
|
|
|
char *data, int datalen);
|
2001-03-03 14:54:34 +03:00
|
|
|
unsigned char *(*sign)(void *key, char *data, int datalen, int *siglen);
|
2000-09-05 18:28:17 +04:00
|
|
|
char *name;
|
2000-09-27 19:21:04 +04:00
|
|
|
char *keytype; /* for host key cache */
|
2000-09-05 18:28:17 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ssh_compress {
|
|
|
|
char *name;
|
2000-11-02 00:34:21 +03:00
|
|
|
void (*compress_init)(void);
|
|
|
|
int (*compress)(unsigned char *block, int len,
|
|
|
|
unsigned char **outblock, int *outlen);
|
|
|
|
void (*decompress_init)(void);
|
|
|
|
int (*decompress)(unsigned char *block, int len,
|
|
|
|
unsigned char **outblock, int *outlen);
|
2001-03-05 19:38:42 +03:00
|
|
|
int (*disable_compression)(void);
|
1999-01-08 16:02:13 +03:00
|
|
|
};
|
|
|
|
|
2001-03-03 14:54:34 +03:00
|
|
|
struct ssh2_userkey {
|
|
|
|
const struct ssh_signkey *alg; /* the key algorithm */
|
|
|
|
void *data; /* the key data */
|
|
|
|
char *comment; /* the key comment */
|
|
|
|
};
|
|
|
|
|
|
|
|
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_aes;
|
|
|
|
extern const struct ssh2_ciphers ssh2_blowfish;
|
|
|
|
extern const struct ssh_kex ssh_diffiehellman;
|
|
|
|
extern const struct ssh_kex ssh_diffiehellman_gex;
|
|
|
|
extern const struct ssh_signkey ssh_dss;
|
|
|
|
extern const struct ssh_signkey ssh_rsa;
|
|
|
|
extern const struct ssh_mac ssh_md5;
|
|
|
|
extern const struct ssh_mac ssh_sha1;
|
|
|
|
extern const struct ssh_mac ssh_sha1_buggy;
|
|
|
|
|
2000-03-24 12:45:49 +03:00
|
|
|
#ifndef MSCRYPTOAPI
|
1999-01-08 16:02:13 +03:00
|
|
|
void SHATransform(word32 *digest, word32 *data);
|
2000-03-24 12:45:49 +03:00
|
|
|
#endif
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
int random_byte(void);
|
|
|
|
void random_add_noise(void *noise, int length);
|
2000-10-19 19:43:08 +04:00
|
|
|
void random_add_heavynoise(void *noise, int length);
|
1999-11-09 14:10:04 +03:00
|
|
|
|
|
|
|
void logevent (char *);
|
2000-09-05 18:28:17 +04:00
|
|
|
|
2000-09-07 20:33:49 +04:00
|
|
|
Bignum copybn(Bignum b);
|
2001-03-01 20:41:26 +03:00
|
|
|
Bignum bn_power_2(int n);
|
|
|
|
void bn_restore_invariant(Bignum b);
|
2000-10-18 19:00:36 +04:00
|
|
|
Bignum bignum_from_short(unsigned short n);
|
2000-09-05 18:28:17 +04:00
|
|
|
void freebn(Bignum b);
|
2000-10-23 20:11:31 +04:00
|
|
|
Bignum modpow(Bignum base, Bignum exp, Bignum mod);
|
|
|
|
Bignum modmul(Bignum a, Bignum b, Bignum mod);
|
2000-09-07 20:33:49 +04:00
|
|
|
void decbn(Bignum n);
|
|
|
|
extern Bignum Zero, One;
|
2001-03-01 20:41:26 +03:00
|
|
|
Bignum bignum_from_bytes(unsigned char *data, int nbytes);
|
2000-09-07 20:33:49 +04:00
|
|
|
int ssh1_read_bignum(unsigned char *data, Bignum *result);
|
2000-09-14 19:02:50 +04:00
|
|
|
int ssh1_bignum_bitcount(Bignum bn);
|
|
|
|
int ssh1_bignum_length(Bignum bn);
|
|
|
|
int bignum_byte(Bignum bn, int i);
|
2000-10-18 19:00:36 +04:00
|
|
|
int bignum_bit(Bignum bn, int i);
|
|
|
|
void bignum_set_bit(Bignum bn, int i, int value);
|
2000-09-14 19:02:50 +04:00
|
|
|
int ssh1_write_bignum(void *data, Bignum bn);
|
2000-10-18 19:00:36 +04:00
|
|
|
Bignum biggcd(Bignum a, Bignum b);
|
|
|
|
unsigned short bignum_mod_short(Bignum number, unsigned short modulus);
|
|
|
|
Bignum bignum_add_long(Bignum number, unsigned long addend);
|
|
|
|
Bignum bigmul(Bignum a, Bignum b);
|
|
|
|
Bignum modinv(Bignum number, Bignum modulus);
|
2001-03-01 20:41:26 +03:00
|
|
|
Bignum bignum_bitmask(Bignum number);
|
2000-10-18 19:00:36 +04:00
|
|
|
Bignum bignum_rshift(Bignum number, int shift);
|
2000-10-18 19:36:32 +04:00
|
|
|
int bignum_cmp(Bignum a, Bignum b);
|
2000-10-19 19:43:08 +04:00
|
|
|
char *bignum_decimal(Bignum x);
|
2000-09-05 18:28:17 +04:00
|
|
|
|
2001-03-01 20:41:26 +03:00
|
|
|
void dh_setup_group1(void);
|
2001-03-01 20:55:40 +03:00
|
|
|
void dh_setup_group(Bignum pval, Bignum gval);
|
2001-03-01 20:41:26 +03:00
|
|
|
void dh_cleanup(void);
|
2001-03-10 14:04:07 +03:00
|
|
|
Bignum dh_create_e(int nbits);
|
2000-09-05 18:28:17 +04:00
|
|
|
Bignum dh_find_K(Bignum f);
|
2000-09-07 20:33:49 +04:00
|
|
|
|
2001-03-03 14:54:34 +03:00
|
|
|
int loadrsakey(char *filename, struct RSAKey *key, char *passphrase);
|
2000-09-25 14:14:53 +04:00
|
|
|
int rsakey_encrypted(char *filename, char **comment);
|
2000-09-07 20:33:49 +04:00
|
|
|
|
2001-03-03 14:54:34 +03:00
|
|
|
int saversakey(char *filename, struct RSAKey *key, char *passphrase);
|
|
|
|
|
|
|
|
void base64_encode_atom(unsigned char *data, int n, char *out);
|
|
|
|
|
|
|
|
/* ssh2_load_userkey can return this as an error */
|
|
|
|
extern struct ssh2_userkey ssh2_wrong_passphrase;
|
|
|
|
#define SSH2_WRONG_PASSPHRASE (&ssh2_wrong_passphrase)
|
|
|
|
|
|
|
|
int ssh2_userkey_encrypted(char *filename, char **comment);
|
|
|
|
struct ssh2_userkey *ssh2_load_userkey(char *filename, char *passphrase);
|
|
|
|
char *ssh2_userkey_loadpub(char *filename, char **algorithm, int *pub_blob_len);
|
|
|
|
int ssh2_save_userkey(char *filename, struct ssh2_userkey *key, char *passphrase);
|
|
|
|
|
|
|
|
int keyfile_version(char *filename);
|
2000-10-19 19:43:08 +04:00
|
|
|
|
2001-03-03 14:54:34 +03:00
|
|
|
void des3_decrypt_pubkey(unsigned char *key, unsigned char *blk, int len);
|
|
|
|
void des3_encrypt_pubkey(unsigned char *key, unsigned char *blk, int len);
|
|
|
|
void aes256_encrypt_pubkey(unsigned char *key, unsigned char *blk, int len);
|
|
|
|
void aes256_decrypt_pubkey(unsigned char *key, unsigned char *blk, int len);
|
2000-10-18 19:00:36 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* For progress updates in the key generation utility.
|
|
|
|
*/
|
|
|
|
typedef void (*progfn_t)(void *param, int phase, int progress);
|
|
|
|
|
2001-03-03 14:54:34 +03:00
|
|
|
int rsa_generate(struct RSAKey *key, int bits, progfn_t pfn, void *pfnparam);
|
2000-10-18 19:00:36 +04:00
|
|
|
Bignum primegen(int bits, int modulus, int residue,
|
|
|
|
int phase, progfn_t pfn, void *pfnparam);
|
2000-11-02 00:34:21 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* zlib compression.
|
|
|
|
*/
|
|
|
|
void zlib_compress_init(void);
|
|
|
|
void zlib_decompress_init(void);
|
|
|
|
int zlib_compress_block(unsigned char *block, int len,
|
|
|
|
unsigned char **outblock, int *outlen);
|
|
|
|
int zlib_decompress_block(unsigned char *block, int len,
|
|
|
|
unsigned char **outblock, int *outlen);
|
2001-03-03 18:56:39 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* SSH1 agent messages.
|
|
|
|
*/
|
|
|
|
#define SSH1_AGENTC_REQUEST_RSA_IDENTITIES 1
|
|
|
|
#define SSH1_AGENT_RSA_IDENTITIES_ANSWER 2
|
|
|
|
#define SSH1_AGENTC_RSA_CHALLENGE 3
|
|
|
|
#define SSH1_AGENT_RSA_RESPONSE 4
|
|
|
|
#define SSH1_AGENTC_ADD_RSA_IDENTITY 7
|
|
|
|
#define SSH1_AGENTC_REMOVE_RSA_IDENTITY 8
|
|
|
|
#define SSH1_AGENTC_REMOVE_ALL_RSA_IDENTITIES 9 /* openssh private? */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Messages common to SSH1 and OpenSSH's SSH2.
|
|
|
|
*/
|
|
|
|
#define SSH_AGENT_FAILURE 5
|
|
|
|
#define SSH_AGENT_SUCCESS 6
|
|
|
|
|
|
|
|
/*
|
|
|
|
* OpenSSH's SSH2 agent messages.
|
|
|
|
*/
|
|
|
|
#define SSH2_AGENTC_REQUEST_IDENTITIES 11
|
|
|
|
#define SSH2_AGENT_IDENTITIES_ANSWER 12
|
|
|
|
#define SSH2_AGENTC_SIGN_REQUEST 13
|
|
|
|
#define SSH2_AGENT_SIGN_RESPONSE 14
|
|
|
|
#define SSH2_AGENTC_ADD_IDENTITY 17
|
|
|
|
#define SSH2_AGENTC_REMOVE_IDENTITY 18
|
|
|
|
#define SSH2_AGENTC_REMOVE_ALL_IDENTITIES 19
|