]> andersk Git - openssh.git/blame - kex.h
- stevesk@cvs.openbsd.org 2001/04/03 13:56:11
[openssh.git] / kex.h
CommitLineData
03b8f8be 1/* $OpenBSD: kex.h,v 1.17 2001/03/29 21:17:40 markus Exp $ */
23c2a7a5 2
7e7327a1 3/*
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.
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"
31
94ec8c6b 32#define KEX_DH1 "diffie-hellman-group1-sha1"
33#define KEX_DHGEX "diffie-hellman-group-exchange-sha1"
7e7327a1 34
35enum kex_init_proposals {
36 PROPOSAL_KEX_ALGS,
37 PROPOSAL_SERVER_HOST_KEY_ALGS,
38 PROPOSAL_ENC_ALGS_CTOS,
39 PROPOSAL_ENC_ALGS_STOC,
40 PROPOSAL_MAC_ALGS_CTOS,
41 PROPOSAL_MAC_ALGS_STOC,
42 PROPOSAL_COMP_ALGS_CTOS,
43 PROPOSAL_COMP_ALGS_STOC,
44 PROPOSAL_LANG_CTOS,
45 PROPOSAL_LANG_STOC,
46 PROPOSAL_MAX
47};
48
49enum kex_modes {
50 MODE_IN,
51 MODE_OUT,
52 MODE_MAX
53};
54
94ec8c6b 55enum kex_exchange {
56 DH_GRP1_SHA1,
57 DH_GEX_SHA1
58};
2b87da3b 59
7e7327a1 60typedef struct Kex Kex;
61typedef struct Mac Mac;
62typedef struct Comp Comp;
63typedef struct Enc Enc;
64
65struct Enc {
94ec8c6b 66 char *name;
67 Cipher *cipher;
7e7327a1 68 int enabled;
1e3b8b07 69 u_char *key;
70 u_char *iv;
7e7327a1 71};
72struct Mac {
94ec8c6b 73 char *name;
7e7327a1 74 int enabled;
94ec8c6b 75 EVP_MD *md;
7e7327a1 76 int mac_len;
1e3b8b07 77 u_char *key;
7e7327a1 78 int key_len;
7e7327a1 79};
80struct Comp {
81 int type;
82 int enabled;
83 char *name;
84};
85struct Kex {
86 Enc enc [MODE_MAX];
87 Mac mac [MODE_MAX];
88 Comp comp[MODE_MAX];
89 int we_need;
90 int server;
91 char *name;
fa08c86b 92 int hostkey_type;
94ec8c6b 93 int kex_type;
7e7327a1 94};
95
96Buffer *kex_init(char *myproposal[PROPOSAL_MAX]);
71276795 97void
98kex_exchange_kexinit(
99 Buffer *my_kexinit, Buffer *peer_kexint,
100 char *peer_proposal[PROPOSAL_MAX]);
101Kex *
102kex_choose_conf(char *cprop[PROPOSAL_MAX],
103 char *sprop[PROPOSAL_MAX], int server);
1e3b8b07 104int kex_derive_keys(Kex *k, u_char *hash, BIGNUM *shared_secret);
7e7327a1 105void packet_set_kex(Kex *k);
106
1e3b8b07 107u_char *
7e7327a1 108kex_hash(
109 char *client_version_string,
110 char *server_version_string,
111 char *ckexinit, int ckexinitlen,
112 char *skexinit, int skexinitlen,
113 char *serverhostkeyblob, int sbloblen,
114 BIGNUM *client_dh_pub,
115 BIGNUM *server_dh_pub,
116 BIGNUM *shared_secret);
117
1e3b8b07 118u_char *
94ec8c6b 119kex_hash_gex(
120 char *client_version_string,
121 char *server_version_string,
122 char *ckexinit, int ckexinitlen,
123 char *skexinit, int skexinitlen,
124 char *serverhostkeyblob, int sbloblen,
4047d868 125 int min, int wantbits, int max,
126 BIGNUM *prime, BIGNUM *gen,
94ec8c6b 127 BIGNUM *client_dh_pub,
128 BIGNUM *server_dh_pub,
129 BIGNUM *shared_secret);
7e7327a1 130#endif
This page took 0.103499 seconds and 5 git commands to generate.