ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/configure.ac
(Generate patch)

Comparing gvpe/configure.ac (file contents):
Revision 1.60 by root, Wed Jul 10 01:51:40 2013 UTC vs.
Revision 1.61 by root, Sat Jul 13 04:10:29 2013 UTC

375 375
376DIGEST=ripemd160 376DIGEST=ripemd160
377AC_ARG_ENABLE(digest, 377AC_ARG_ENABLE(digest,
378 [AS_HELP_STRING(--enable-digest=CIPHER,[ 378 [AS_HELP_STRING(--enable-digest=CIPHER,[
379 Select the digest algorithm to use (default "ripemd160"). Must be one of 379 Select the digest algorithm to use (default "ripemd160"). Must be one of
380 "sha512", "sha256", "sha1" (somewhat insecure), "ripemd160", "md5" (insecure) or "md4" (insecure).])], 380 "sha512", "sha256", "sha1" (legacy), "ripemd160", "md5" (insecure) or "md4" (insecure).])],
381 if test "x$enableval" = xsha512 ; then DIGEST=sha512 ; fi 381 if test "x$enableval" = xsha512 ; then DIGEST=sha512 ; fi
382 if test "x$enableval" = xsha256 ; then DIGEST=sha256 ; fi 382 if test "x$enableval" = xsha256 ; then DIGEST=sha256 ; fi
383 if test "x$enableval" = xsha1 ; then DIGEST=sha1 ; fi 383 if test "x$enableval" = xsha1 ; then DIGEST=sha1 ; fi
384 if test "x$enableval" = xripemd160; then DIGEST=ripemd160; fi 384 if test "x$enableval" = xripemd160; then DIGEST=ripemd160; fi
385 if test "x$enableval" = xmd5 ; then DIGEST=md5 ; fi 385 if test "x$enableval" = xmd5 ; then DIGEST=md5 ; fi
435echo "*** WARNING: The digest you have chosen ($DIGEST) is known to be insecure" 435echo "*** WARNING: The digest you have chosen ($DIGEST) is known to be insecure"
436fi 436fi
437 437
438if test "x$DIGEST" = xmd5; then 438if test "x$DIGEST" = xmd5; then
439echo "***" 439echo "***"
440echo "*** WARNING: The digest you have chosen ($DIGEST) is probably insecure" 440echo "*** WARNING: The digest you have chosen ($DIGEST) is quite insecure"
441fi 441fi
442 442
443if test "$HMAC" -lt 12; then 443if test "$HMAC" -lt 12; then
444echo "***" 444echo "***"
445echo "*** WARNING: The hmac length you have chosen ($HMAC) is probably insecure" 445echo "*** WARNING: The hmac length you have chosen ($HMAC) is quite insecure"
446fi 446fi
447 447
448if test "$RAND" -lt 8; then 448if test "$RAND" -lt 8; then
449echo "***" 449echo "***"
450echo "*** WARNING: The random prefix you have chosen ($RAND) is probably insecure" 450echo "*** WARNING: The random prefix you have chosen ($RAND) is probably insecure"

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines