From owner-svn-ports-head@freebsd.org Wed Jun 13 18:59:07 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DD3241007258; Wed, 13 Jun 2018 18:59:06 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8E84274338; Wed, 13 Jun 2018 18:59:06 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6F9E31D764; Wed, 13 Jun 2018 18:59:06 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5DIx6nU004514; Wed, 13 Jun 2018 18:59:06 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5DIx5xg004508; Wed, 13 Jun 2018 18:59:05 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201806131859.w5DIx5xg004508@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Wed, 13 Jun 2018 18:59:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472337 - head/security/libgcrypt X-SVN-Group: ports-head X-SVN-Commit-Author: cpm X-SVN-Commit-Paths: head/security/libgcrypt X-SVN-Commit-Revision: 472337 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jun 2018 18:59:07 -0000 Author: cpm Date: Wed Jun 13 18:59:05 2018 New Revision: 472337 URL: https://svnweb.freebsd.org/changeset/ports/472337 Log: security/libgcrypt: Update to 1.8.3 (bugfix) - Improve comment in Makefile - Provide more elaborate port description and update WWW in pkg-descr Noteworthy changes in version 1.8.3 =================================== - Use blinding for ECDSA signing to mitigate a novel side-channel attack. [#4011,CVE-2018-0495] - Fix incorrect counter overflow handling for GCM when using an IV size other than 96 bit. [#3764] - Fix incorrect output of AES-keywrap mode for in-place encryption on some platforms. - Fix the gcry_mpi_ec_curve_point point validation function. - Fix rare assertion failure in gcry_prime_check. Release info at . For further details, see https://lists.gnupg.org/pipermail/gnupg-announce/2018q2/000426.html MFH: 2018Q2 Security: http://vuxml.freebsd.org/freebsd/9b5162de-6f39-11e8-818e-e8e0b747a45a.html Modified: head/security/libgcrypt/Makefile head/security/libgcrypt/distinfo head/security/libgcrypt/pkg-descr head/security/libgcrypt/pkg-plist Modified: head/security/libgcrypt/Makefile ============================================================================== --- head/security/libgcrypt/Makefile Wed Jun 13 18:51:55 2018 (r472336) +++ head/security/libgcrypt/Makefile Wed Jun 13 18:59:05 2018 (r472337) @@ -1,12 +1,12 @@ # $FreeBSD$ PORTNAME= libgcrypt -PORTVERSION= 1.8.2 +PORTVERSION= 1.8.3 CATEGORIES= security MASTER_SITES= GNUPG MAINTAINER= cpm@FreeBSD.org -COMMENT= General purpose crypto library based on code used in GnuPG +COMMENT= General purpose cryptographic library based on the code from GnuPG LICENSE= GPLv2+ LGPL21+ LICENSE_COMB= multi Modified: head/security/libgcrypt/distinfo ============================================================================== --- head/security/libgcrypt/distinfo Wed Jun 13 18:51:55 2018 (r472336) +++ head/security/libgcrypt/distinfo Wed Jun 13 18:59:05 2018 (r472337) @@ -1,3 +1,3 @@ -TIMESTAMP = 1513371062 -SHA256 (libgcrypt-1.8.2.tar.bz2) = c8064cae7558144b13ef0eb87093412380efa16c4ee30ad12ecb54886a524c07 -SIZE (libgcrypt-1.8.2.tar.bz2) = 2966534 +TIMESTAMP = 1528899391 +SHA256 (libgcrypt-1.8.3.tar.bz2) = 66ec90be036747602f2b48f98312361a9180c97c68a690a5f376fa0f67d0af7c +SIZE (libgcrypt-1.8.3.tar.bz2) = 2989166 Modified: head/security/libgcrypt/pkg-descr ============================================================================== --- head/security/libgcrypt/pkg-descr Wed Jun 13 18:51:55 2018 (r472336) +++ head/security/libgcrypt/pkg-descr Wed Jun 13 18:59:05 2018 (r472337) @@ -1,3 +1,8 @@ -Libgcrypt is a general purpose crypto library based on the code used in GnuPG. +Libgcrypt is a general purpose cryptographic library based on the code from +GnuPG. -WWW: https://www.gnupg.org/ +It provides functions for all cryptographic building blocks: symmetric ciphers, +hash algorithms, MACs, public key algorithms, large integer functions, +random numbers and a lot of supporting functions. + +WWW: https://www.gnupg.org/software/libgcrypt/index.html Modified: head/security/libgcrypt/pkg-plist ============================================================================== --- head/security/libgcrypt/pkg-plist Wed Jun 13 18:51:55 2018 (r472336) +++ head/security/libgcrypt/pkg-plist Wed Jun 13 18:59:05 2018 (r472337) @@ -6,6 +6,6 @@ include/gcrypt.h lib/libgcrypt.a lib/libgcrypt.so lib/libgcrypt.so.20 -lib/libgcrypt.so.20.2.2 +lib/libgcrypt.so.20.2.3 man/man1/hmac256.1.gz share/aclocal/libgcrypt.m4