comparison dh_groups.h @ 1703:ee6ccc2ecc47

Fix typo DROPBEAR_NORMAL_DH
author Matt Johnston <matt@ucc.asn.au>
date Thu, 28 May 2020 23:23:54 +0800
parents 8f93f37c01de
children
comparison
equal deleted inserted replaced
1702:8f93f37c01de 1703:ee6ccc2ecc47
1 #ifndef DROPBEAR_DH_GROUPS_H 1 #ifndef DROPBEAR_DH_GROUPS_H
2 #define DROPBEAR_DH_GROUPS_H 2 #define DROPBEAR_DH_GROUPS_H
3 #include "options.h" 3 #include "options.h"
4 4
5 #if DROPBEAR_DH_NORMAL 5 #if DROPBEAR_NORMAL_DH
6 6
7 #if DROPBEAR_DH_GROUP1 7 #if DROPBEAR_DH_GROUP1
8 #define DH_P_1_LEN 128 8 #define DH_P_1_LEN 128
9 extern const unsigned char dh_p_1[DH_P_1_LEN]; 9 extern const unsigned char dh_p_1[DH_P_1_LEN];
10 #endif 10 #endif
19 extern const unsigned char dh_p_16[DH_P_16_LEN]; 19 extern const unsigned char dh_p_16[DH_P_16_LEN];
20 #endif 20 #endif
21 21
22 extern const int DH_G_VAL; 22 extern const int DH_G_VAL;
23 23
24 #endif 24 #endif /* DROPBEAR_NORMAL_DH */
25 25
26 #endif 26 #endif