diff options
author | Matt Johnston <matt@ucc.asn.au> | 2013-04-14 22:49:19 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2013-04-14 22:49:19 +0800 |
commit | 3bdfae61a23e597acd97db189feea74fb27e028a (patch) | |
tree | 4784b179e19f4db7b40dca3cdd7ab2741476c608 /algo.h | |
parent | 4404126501ba18184a8e04f815c21e7a9184414a (diff) | |
parent | adeb372a66643000aee8445f8b2f9854fdfb4402 (diff) |
merge
Diffstat (limited to 'algo.h')
-rw-r--r-- | algo.h | 16 |
1 files changed, 12 insertions, 4 deletions
@@ -83,10 +83,18 @@ void crypto_init(); int have_algo(char* algo, size_t algolen, algo_type algos[]); void buf_put_algolist(buffer * buf, algo_type localalgos[]); -algo_type * svr_buf_match_algo(buffer* buf, algo_type localalgos[], - int *goodguess); -algo_type * cli_buf_match_algo(buffer* buf, algo_type localalgos[], - int *goodguess); +enum kexguess2_used { + KEXGUESS2_LOOK, + KEXGUESS2_NO, + KEXGUESS2_YES, +}; + +#define KEXGUESS2_ALGO_NAME "kexguess2@matt.ucc.asn.au" +#define KEXGUESS2_ALGO_ID 99 + + +algo_type * buf_match_algo(buffer* buf, algo_type localalgos[], + enum kexguess2_used *kexguess2, int *goodguess); #ifdef ENABLE_USER_ALGO_LIST int check_user_algos(const char* user_algo_list, algo_type * algos, |