dropbear 2016.73
[tomato.git] / release / src / router / dropbear / dh_groups.h
blobcddaa17a096c008b9fa6404bc11fe69bd606edc2
1 #ifndef DROPBEAR_DH_GROUPS_H
2 #define DROPBEAR_DH_GROUPS_H
3 #include "options.h"
5 #if DROPBEAR_DH_GROUP1
6 #define DH_P_1_LEN 128
7 extern const unsigned char dh_p_1[DH_P_1_LEN];
8 #endif
10 #if DROPBEAR_DH_GROUP14
11 #define DH_P_14_LEN 256
12 extern const unsigned char dh_p_14[DH_P_14_LEN];
13 #endif
15 #if DROPBEAR_DH_GROUP16
16 #define DH_P_16_LEN 512
17 extern const unsigned char dh_p_16[DH_P_16_LEN];
18 #endif
21 extern const int DH_G_VAL;
24 #endif