dh_groups.h 428 B

123456789101112131415161718192021222324
  1. #ifndef DROPBEAR_DH_GROUPS_H
  2. #define DROPBEAR_DH_GROUPS_H
  3. #include "options.h"
  4. #if DROPBEAR_DH_GROUP1
  5. #define DH_P_1_LEN 128
  6. extern const unsigned char dh_p_1[DH_P_1_LEN];
  7. #endif
  8. #if DROPBEAR_DH_GROUP14
  9. #define DH_P_14_LEN 256
  10. extern const unsigned char dh_p_14[DH_P_14_LEN];
  11. #endif
  12. #if DROPBEAR_DH_GROUP16
  13. #define DH_P_16_LEN 512
  14. extern const unsigned char dh_p_16[DH_P_16_LEN];
  15. #endif
  16. extern const int DH_G_VAL;
  17. #endif