]> andersk Git - openssh.git/blame - kex.h
- markus@cvs.openbsd.org 2005/06/16 08:00:00
[openssh.git] / kex.h
CommitLineData
41e5bd9a 1/* $OpenBSD: kex.h,v 1.35 2004/06/13 12:53:24 djm Exp $ */
23c2a7a5 2
7e7327a1 3/*
a96070d4 4 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
7e7327a1 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.
7e7327a1 14 *
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
b2552997 29#include <openssl/evp.h>
30#include "buffer.h"
a5c9ffdb 31#include "cipher.h"
32#include "key.h"
b2552997 33
94ec8c6b 34#define KEX_DH1 "diffie-hellman-group1-sha1"
41e5bd9a 35#define KEX_DH14 "diffie-hellman-group14-sha1"
94ec8c6b 36#define KEX_DHGEX "diffie-hellman-group-exchange-sha1"
7e7327a1 37
38enum kex_init_proposals {
39 PROPOSAL_KEX_ALGS,
40 PROPOSAL_SERVER_HOST_KEY_ALGS,
41 PROPOSAL_ENC_ALGS_CTOS,
42 PROPOSAL_ENC_ALGS_STOC,
43 PROPOSAL_MAC_ALGS_CTOS,
44 PROPOSAL_MAC_ALGS_STOC,
45 PROPOSAL_COMP_ALGS_CTOS,
46 PROPOSAL_COMP_ALGS_STOC,
47 PROPOSAL_LANG_CTOS,
48 PROPOSAL_LANG_STOC,
49 PROPOSAL_MAX
50};
51
52enum kex_modes {
53 MODE_IN,
54 MODE_OUT,
55 MODE_MAX
56};
57
94ec8c6b 58enum kex_exchange {
98a58eda 59 KEX_DH_GRP1_SHA1,
41e5bd9a 60 KEX_DH_GRP14_SHA1,
98a58eda 61 KEX_DH_GEX_SHA1,
62 KEX_MAX
94ec8c6b 63};
2b87da3b 64
d1ac6175 65#define KEX_INIT_SENT 0x0001
66
7e7327a1 67typedef struct Kex Kex;
68typedef struct Mac Mac;
69typedef struct Comp Comp;
70typedef struct Enc Enc;
d1ac6175 71typedef struct Newkeys Newkeys;
7e7327a1 72
73struct Enc {
d1ac6175 74 char *name;
75 Cipher *cipher;
76 int enabled;
3ee832e5 77 u_int key_len;
78 u_int block_size;
1e3b8b07 79 u_char *key;
80 u_char *iv;
7e7327a1 81};
82struct Mac {
d1ac6175 83 char *name;
84 int enabled;
7b5edc2b 85 const EVP_MD *md;
d1ac6175 86 int mac_len;
1e3b8b07 87 u_char *key;
d1ac6175 88 int key_len;
7e7327a1 89};
90struct Comp {
d1ac6175 91 int type;
92 int enabled;
93 char *name;
94};
95struct Newkeys {
96 Enc enc;
97 Mac mac;
98 Comp comp;
7e7327a1 99};
100struct Kex {
d1ac6175 101 u_char *session_id;
661e45a0 102 u_int session_id_len;
c422989b 103 Newkeys *newkeys[MODE_MAX];
d1ac6175 104 int we_need;
105 int server;
106 char *name;
107 int hostkey_type;
108 int kex_type;
109 Buffer my;
110 Buffer peer;
c422989b 111 int done;
d1ac6175 112 int flags;
113 char *client_version_string;
114 char *server_version_string;
2a1e4639 115 int (*verify_host_key)(Key *);
116 Key *(*load_host_key)(int);
1853d1ef 117 int (*host_key_index)(Key *);
98a58eda 118 void (*kex[KEX_MAX])(Kex *);
7e7327a1 119};
120
2a1e4639 121Kex *kex_setup(char *[PROPOSAL_MAX]);
255cabd9 122void kex_finish(Kex *);
d8ee838b 123
255cabd9 124void kex_send_kexinit(Kex *);
7819b5c3 125void kex_input_kexinit(int, u_int32_t, void *);
255cabd9 126void kex_derive_keys(Kex *, u_char *, BIGNUM *);
7e7327a1 127
2a1e4639 128Newkeys *kex_get_newkeys(int);
d1ac6175 129
98a58eda 130void kexdh_client(Kex *);
131void kexdh_server(Kex *);
132void kexgex_client(Kex *);
133void kexgex_server(Kex *);
134
135u_char *
136kex_dh_hash(char *, char *, char *, int, char *, int, u_char *, int,
137 BIGNUM *, BIGNUM *, BIGNUM *);
138u_char *
139kexgex_hash(char *, char *, char *, int, char *, int, u_char *, int,
140 int, int, int, BIGNUM *, BIGNUM *, BIGNUM *, BIGNUM *, BIGNUM *);
141
7e9a0e92 142void
143derive_ssh1_session_id(BIGNUM *, BIGNUM *, u_int8_t[8], u_int8_t[16]);
144
a5c9ffdb 145#if defined(DEBUG_KEX) || defined(DEBUG_KEXDH)
2a1e4639 146void dump_digest(char *, u_char *, int);
a5c9ffdb 147#endif
7e7327a1 148
149#endif
This page took 2.145366 seconds and 5 git commands to generate.