Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/distrib/utils/sysinst Make SHA1 the first option when select...



details:   https://anonhg.NetBSD.org/src/rev/625cfd931116
branches:  trunk
changeset: 750096:625cfd931116
user:      ahoka <ahoka%NetBSD.org@localhost>
date:      Wed Dec 16 16:03:26 2009 +0000

description:
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.

diffstat:

 distrib/utils/sysinst/menus.mi |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r e6de2f91e567 -r 625cfd931116 distrib/utils/sysinst/menus.mi
--- a/distrib/utils/sysinst/menus.mi    Wed Dec 16 14:37:26 2009 +0000
+++ b/distrib/utils/sysinst/menus.mi    Wed Dec 16 16:03:26 2009 +0000
@@ -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 @@
        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;



Home | Main Index | Thread Index | Old Index