diff options
Diffstat (limited to 'kex.h')
-rw-r--r-- | kex.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -102,7 +102,8 @@ struct Kex { | |||
102 | }; | 102 | }; |
103 | 103 | ||
104 | Buffer *kex_init(char *myproposal[PROPOSAL_MAX]); | 104 | Buffer *kex_init(char *myproposal[PROPOSAL_MAX]); |
105 | DH *new_dh_group1(); | 105 | int dh_pub_is_valid(DH *dh, BIGNUM *dh_pub); |
106 | DH *dh_new_group1(); | ||
106 | Kex *kex_choose_conf(char *cprop[PROPOSAL_MAX], char *sprop[PROPOSAL_MAX], int server); | 107 | Kex *kex_choose_conf(char *cprop[PROPOSAL_MAX], char *sprop[PROPOSAL_MAX], int server); |
107 | int kex_derive_keys(Kex *k, unsigned char *hash, BIGNUM *shared_secret); | 108 | int kex_derive_keys(Kex *k, unsigned char *hash, BIGNUM *shared_secret); |
108 | void bignum_print(BIGNUM *b); | 109 | void bignum_print(BIGNUM *b); |