This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
supp.h
54 lines (43 loc) · 1.58 KB
/
supp.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* Algorithm support checks
Copyright (C) 2005 Maurice Massar
Reorganised 2006 by Dan Villiom Podlaski Christiansen
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
$Id$
*/
#ifndef __SUPP_H__
#define __SUPP_H__
enum supp_algo_key {
SUPP_ALGO_NAME,
SUPP_ALGO_MY_ID,
SUPP_ALGO_IKE_SA,
SUPP_ALGO_IPSEC_SA
};
enum algo_group {
SUPP_ALGO_DH_GROUP,
SUPP_ALGO_HASH,
SUPP_ALGO_CRYPT,
SUPP_ALGO_AUTH
};
typedef struct {
const char *name;
int my_id, ike_sa_id, ipsec_sa_id;
int keylen;
} supported_algo_t;
extern const supported_algo_t supp_dh_group[];
extern const supported_algo_t supp_hash[];
extern const supported_algo_t supp_crypt[];
extern const supported_algo_t supp_auth[];
extern const supported_algo_t *get_algo(enum algo_group what, enum supp_algo_key key, int id, const char *name, int keylen);
extern const supported_algo_t *get_dh_group_ike(void);
extern const supported_algo_t *get_dh_group_ipsec(int server_setting);
#endif