From: Nikos Mavrogiannopoulos Date: Mon, 5 Jun 2017 07:50:07 +0000 (+0200) Subject: psktool: increased default key size to 256-bits X-Git-Tag: gnutls_3_6_0~477 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e2ffb46af1d266b01ced511c4532355ba46e992a;p=thirdparty%2Fgnutls.git psktool: increased default key size to 256-bits Signed-off-by: Nikos Mavrogiannopoulos --- diff --git a/src/psk.c b/src/psk.c index 4867ba863b..1299515445 100644 --- a/src/psk.c +++ b/src/psk.c @@ -113,7 +113,7 @@ int main(int argc, char **argv) } if (!HAVE_OPT(KEYSIZE) || OPT_VALUE_KEYSIZE < 1) - key_size = 16; + key_size = 32; else key_size = OPT_VALUE_KEYSIZE;