Mercurial > dropbear
diff runopts.h @ 682:4edea9f363d0
Add rough support for choosing ciphers/hashes with "-c" or "-m"
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 17 May 2012 00:12:42 +0800 |
parents | f9b5dc0cba61 |
children | c58a15983808 |
line wrap: on
line diff
--- a/runopts.h Wed May 09 22:52:58 2012 +0800 +++ b/runopts.h Thu May 17 00:12:42 2012 +0800 @@ -47,6 +47,10 @@ int enable_compress; #endif +#ifdef ENABLE_USER_ALGO_LIST + char *cipher_list; + char *mac_list; +#endif } runopts; @@ -148,4 +152,8 @@ extern cli_runopts cli_opts; void cli_getopts(int argc, char ** argv); +#ifdef ENABLE_USER_ALGO_LIST +void parse_ciphers_macs(); +#endif + #endif /* _RUNOPTS_H_ */