diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2014-12-29 16:55:45 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2014-12-29 16:55:45 +0000 |
commit | 4c8fe46e04b0cd77e08a608bb7a54158c0267852 (patch) | |
tree | 5b54f796b812d5df5cf5ffcd85ec09501a31afe2 /distrib | |
parent | 128992068667afb8ad28f7bc105cfdc6e49f30d5 (diff) |
switch encrypt to auto scaling bcrypt rounds. ok deraadt
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/miniroot/install.sub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index 9c322200d3a..48264111de8 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,4 +1,4 @@ -# $OpenBSD: install.sub,v 1.801 2014/12/26 17:54:54 rpe Exp $ +# $OpenBSD: install.sub,v 1.802 2014/12/29 16:55:44 tedu Exp $ # # Copyright (c) 1997-2009 Todd Miller, Theo de Raadt, Ken Westerback # All rights reserved. @@ -366,7 +366,7 @@ encr_pwd() { $_p == '*************' ]]; then echo "$_p" else - /mnt/usr/bin/encrypt -b 8 -- "$_p" + /mnt/usr/bin/encrypt -b a -- "$_p" fi } |