diff options
author | Matt Johnston <matt@ucc.asn.au> | 2012-05-17 00:12:42 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2012-05-17 00:12:42 +0800 |
commit | 036edd62068e3ad68aa5d15c10bc8b505fbe2396 (patch) | |
tree | c2ac512cd097dfd9bfd61ed465c76a7344cbc5fd /algo.h | |
parent | 10d7a358416e4125b05b0e28f4175659febdcb32 (diff) |
Add rough support for choosing ciphers/hashes with "-c" or "-m"
Diffstat (limited to 'algo.h')
-rw-r--r-- | algo.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -88,4 +88,11 @@ algo_type * svr_buf_match_algo(buffer* buf, algo_type localalgos[], algo_type * cli_buf_match_algo(buffer* buf, algo_type localalgos[], int *goodguess); +#ifdef ENABLE_USER_ALGO_LIST +int check_user_algos(char* user_algo_list, algo_type * algos, + const char *algo_desc); +char * algolist_string(algo_type algos[]); +#endif + + #endif /* _ALGO_H_ */ |