Skip to content
Snippets Groups Projects
Commit d47d5168 authored by Niels Möller's avatar Niels Möller
Browse files

(parse_options): New option --raw-hash, for

compatibility with lsh-1.x. Equivalent to --hash.

Rev: src/nettle/tools/sexp-conv.c:1.19
parent efe06de5
No related branches found
No related tags found
No related merge requests found
......@@ -217,6 +217,7 @@ parse_options(struct conv_options *o,
{ "once", no_argument, NULL, OPT_ONCE },
{ "syntax", required_argument, NULL, 's' },
{ "hash", optional_argument, NULL, OPT_HASH },
{ "raw-hash", optional_argument, NULL, OPT_HASH },
{ "width", required_argument, NULL, 'w' },
#if 0
/* Not yet implemented */
......@@ -312,7 +313,9 @@ parse_options(struct conv_options *o,
" variants: advanced, hex, transport, canonical\n"
" --once Process only the first s-expression.\n"
" -w, --width=WIDTH Linewidth for base64 encoded data.\n"
" Zero means no limit.\n\n"
" Zero means no limit.\n"
" --raw-hash Alias for --hash, for compatibility\n"
" with lsh-1.x.\n\n"
"Report bugs to " BUG_ADDRESS ".\n");
exit(EXIT_SUCCESS);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment