Make SHA1 the first option when selecting cyphers, so one without basic
understanding of cryptography won't choose DES as the default on his system. The default option should be the best possible in case the user is unsure.
This commit is contained in:
parent
05b467b58c
commit
efa829b8a6
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: menus.mi,v 1.36 2009/08/23 21:16:16 jmcneill Exp $ */
|
||||
/* $NetBSD: menus.mi,v 1.37 2009/12/16 16:03:26 ahoka Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2003 The NetBSD Foundation, Inc.
|
||||
|
@ -294,10 +294,10 @@ menu fdok, title MSG_What_do_you_want_to_do;
|
|||
option MSG_Abort_fetch, exit, action { *(int *)arg = SET_RETRY; };
|
||||
|
||||
menu crypttype, title MSG_Password_cipher, y=15;
|
||||
option MSG_SHA1, exit, action { yesno = 4; };
|
||||
option MSG_DES, exit, action { yesno = 1; };
|
||||
option MSG_MD5, exit, action { yesno = 2; };
|
||||
option MSG_Blowfish_2_7_round, exit, action { yesno = 3; };
|
||||
option MSG_SHA1, exit, action { yesno = 4; };
|
||||
option MSG_do_not_change, exit, action { yesno = 0; };
|
||||
|
||||
menu fd_type, title MSG_fd_type, y=16;
|
||||
|
|
Loading…
Reference in New Issue