From 6af1255c9ee179bc21b09f3b87eeea720eb9af39 Mon Sep 17 00:00:00 2001 Message-Id: <6af1255c9ee179bc21b09f3b87eeea720eb9af39.1726870935.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 28 May 2017 19:02:55 +0100 Subject: [PATCH] pwsafe: Change the default crypto. Organization: Straylight/Edgeware From: Mark Wooding Use Rijndael rather than Blowfish (wtf?) and SHA256 instead of RIPEMD-160. Defaults will continue to change. --- pwsafe | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pwsafe b/pwsafe index c12f856..9de0b31 100644 --- a/pwsafe +++ b/pwsafe @@ -59,8 +59,8 @@ def die(msg): def cmd_create(av): ## Default crypto-primitive selections. - cipher = 'blowfish-cbc' - hash = 'rmd160' + cipher = 'rijndael-cbc' + hash = 'sha256' mac = None ## Parse the options. -- [mdw]