blob: 58f6d82c0b2d725bb6bf49b30aadec088123686b [file] [log] [blame]
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001/* $OpenBSD: kex.h,v 1.18 2001/04/03 19:53:29 markus Exp $ */
Ben Lindstrom36579d32001-01-29 07:39:26 +00002
Damien Miller33b13562000-04-04 14:38:59 +10003/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
Damien Miller33b13562000-04-04 14:38:59 +100014 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26#ifndef KEX_H
27#define KEX_H
28
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000029#include <openssl/evp.h>
30#include "buffer.h"
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000031#include "cipher.h"
32#include "key.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000033
Damien Miller874d77b2000-10-14 16:23:11 +110034#define KEX_DH1 "diffie-hellman-group1-sha1"
35#define KEX_DHGEX "diffie-hellman-group-exchange-sha1"
Damien Miller33b13562000-04-04 14:38:59 +100036
37enum kex_init_proposals {
38 PROPOSAL_KEX_ALGS,
39 PROPOSAL_SERVER_HOST_KEY_ALGS,
40 PROPOSAL_ENC_ALGS_CTOS,
41 PROPOSAL_ENC_ALGS_STOC,
42 PROPOSAL_MAC_ALGS_CTOS,
43 PROPOSAL_MAC_ALGS_STOC,
44 PROPOSAL_COMP_ALGS_CTOS,
45 PROPOSAL_COMP_ALGS_STOC,
46 PROPOSAL_LANG_CTOS,
47 PROPOSAL_LANG_STOC,
48 PROPOSAL_MAX
49};
50
51enum kex_modes {
52 MODE_IN,
53 MODE_OUT,
54 MODE_MAX
55};
56
Damien Miller874d77b2000-10-14 16:23:11 +110057enum kex_exchange {
58 DH_GRP1_SHA1,
59 DH_GEX_SHA1
60};
Kevin Stevesef4eea92001-02-05 12:42:17 +000061
Damien Miller33b13562000-04-04 14:38:59 +100062typedef struct Kex Kex;
63typedef struct Mac Mac;
64typedef struct Comp Comp;
65typedef struct Enc Enc;
66
67struct Enc {
Damien Miller874d77b2000-10-14 16:23:11 +110068 char *name;
69 Cipher *cipher;
Damien Miller33b13562000-04-04 14:38:59 +100070 int enabled;
Ben Lindstrom46c16222000-12-22 01:43:59 +000071 u_char *key;
72 u_char *iv;
Damien Miller33b13562000-04-04 14:38:59 +100073};
74struct Mac {
Damien Miller874d77b2000-10-14 16:23:11 +110075 char *name;
Damien Miller33b13562000-04-04 14:38:59 +100076 int enabled;
Damien Miller874d77b2000-10-14 16:23:11 +110077 EVP_MD *md;
Damien Miller33b13562000-04-04 14:38:59 +100078 int mac_len;
Ben Lindstrom46c16222000-12-22 01:43:59 +000079 u_char *key;
Damien Miller33b13562000-04-04 14:38:59 +100080 int key_len;
Damien Miller33b13562000-04-04 14:38:59 +100081};
82struct Comp {
83 int type;
84 int enabled;
85 char *name;
86};
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000087#define KEX_INIT_SENT 0x0001
Damien Miller33b13562000-04-04 14:38:59 +100088struct Kex {
89 Enc enc [MODE_MAX];
90 Mac mac [MODE_MAX];
91 Comp comp[MODE_MAX];
92 int we_need;
93 int server;
94 char *name;
Damien Miller0bc1bd82000-11-13 22:57:25 +110095 int hostkey_type;
Damien Miller874d77b2000-10-14 16:23:11 +110096 int kex_type;
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000097
98 /* used during kex */
99 Buffer my;
100 Buffer peer;
101 int newkeys;
102 int flags;
103 void *state;
104 char *client_version_string;
105 char *server_version_string;
106
107 int (*check_host_key)(Key *hostkey);
108 Key *(*load_host_key)(int type);
Damien Miller33b13562000-04-04 14:38:59 +1000109};
110
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000111void kex_derive_keys(Kex *k, u_char *hash, BIGNUM *shared_secret);
Damien Millerb1715dc2000-05-30 13:44:51 +1000112void packet_set_kex(Kex *k);
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000113Kex *kex_start(char *proposal[PROPOSAL_MAX]);
114void kex_send_newkeys(void);
115void kex_protocol_error(int type, int plen, void *ctxt);
Damien Miller33b13562000-04-04 14:38:59 +1000116
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000117void kexdh(Kex *);
118void kexgex(Kex *);
Damien Miller33b13562000-04-04 14:38:59 +1000119
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000120#if defined(DEBUG_KEX) || defined(DEBUG_KEXDH)
121void dump_digest(char *msg, u_char *digest, int len);
122#endif
123
Damien Miller33b13562000-04-04 14:38:59 +1000124#endif