From owner-cvs-all@FreeBSD.ORG Sat May 16 17:32:59 2009 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 44D961065676; Sat, 16 May 2009 17:32:59 +0000 (UTC) (envelope-from nork@FreeBSD.org) Received: from sakura.ninth-nine.com (ns1.ninth-nine.com [219.127.74.121]) by mx1.freebsd.org (Postfix) with ESMTP id CFDC38FC0C; Sat, 16 May 2009 17:32:58 +0000 (UTC) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (ns1.ninth-nine.com [219.127.74.121] (may be forged)) (authenticated bits=0) by sakura.ninth-nine.com (8.14.3/8.14.3/NinthNine) with ESMTP id n4GGv7q5056026; Sun, 17 May 2009 01:57:12 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Sun, 17 May 2009 01:57:07 +0900 From: Norikatsu Shigemura To: Pav Lucistnik , Denis Barov Message-Id: <20090517015707.706c81c6.nork@FreeBSD.org> In-Reply-To: <200905151100.n4FB0SAb089054@repoman.freebsd.org> References: <200905151100.n4FB0SAb089054@repoman.freebsd.org> X-Mailer: Sylpheed 2.6.0 (GTK+ 2.16.1; i386-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cvs-ports@FreeBSD.org, Norikatsu Shigemura , cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/openssh-portable Makefile distinfo ports/security/openssh-portable/files openssh-5.2p1-hpn-servconf.patch openssh-5.2p1-hpn.patch openssh-lpk+hpn-servconf.patch openssh-lpk-5.0p1-0.3.9-servconv.patch openssh-lpk-5.0p1-0.3.9.patch X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 May 2009 17:32:59 -0000 Hi Pav and Denis! On Fri, 15 May 2009 11:00:28 +0000 (UTC) Pav Lucistnik wrote: > pav 2009-05-15 11:00:28 UTC > FreeBSD ports repository > Modified files: > security/openssh-portable Makefile distinfo > security/openssh-portable/files openssh-lpk-5.0p1-0.3.9.patch > Added files: > security/openssh-portable/files > openssh-5.2p1-hpn-servconf.patch > openssh-5.2p1-hpn.patch openssh-5.2p1-hpn.patch has a critical bug by using aes*-ctr. Would you please commit following patch? Index: Makefile =================================================================== RCS file: /home/ncvs/ports/security/openssh-portable/Makefile,v retrieving revision 1.134 diff -u -r1.134 Makefile --- Makefile 15 May 2009 11:00:27 -0000 1.134 +++ Makefile 16 May 2009 16:51:03 -0000 @@ -7,6 +7,7 @@ PORTNAME= openssh DISTVERSION= 5.2p1 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= security ipv6 .if defined(OPENSSH_SNAPSHOT) Index: files/openssh-5.2p1-hpn.patch =================================================================== RCS file: /home/ncvs/ports/security/openssh-portable/files/openssh-5.2p1-hpn.patch,v retrieving revision 1.1 diff -u -r1.1 openssh-5.2p1-hpn.patch --- files/openssh-5.2p1-hpn.patch 15 May 2009 11:00:27 -0000 1.1 +++ files/openssh-5.2p1-hpn.patch 16 May 2009 16:48:56 -0000 @@ -932,9 +932,9 @@ - { "aes128-ctr", SSH_CIPHER_SSH2, 16, 16, 0, 0, evp_aes_128_ctr }, - { "aes192-ctr", SSH_CIPHER_SSH2, 16, 24, 0, 0, evp_aes_128_ctr }, - { "aes256-ctr", SSH_CIPHER_SSH2, 16, 32, 0, 0, evp_aes_128_ctr }, -+ { "aes128-ctr", SSH_CIPHER_SSH2, 16, 16, 0, evp_aes_ctr_mt }, -+ { "aes192-ctr", SSH_CIPHER_SSH2, 16, 24, 0, evp_aes_ctr_mt }, -+ { "aes256-ctr", SSH_CIPHER_SSH2, 16, 32, 0, evp_aes_ctr_mt }, ++ { "aes128-ctr", SSH_CIPHER_SSH2, 16, 16, 0, 0, evp_aes_ctr_mt }, ++ { "aes192-ctr", SSH_CIPHER_SSH2, 16, 24, 0, 0, evp_aes_ctr_mt }, ++ { "aes256-ctr", SSH_CIPHER_SSH2, 16, 32, 0, 0, evp_aes_ctr_mt }, #ifdef USE_CIPHER_ACSS { "acss@openssh.org", SSH_CIPHER_SSH2, 16, 5, 0, 0, EVP_acss }, #endif > openssh-lpk+hpn-servconf.patch > openssh-lpk-5.0p1-0.3.9-servconv.patch > Log: > - Update to 5.2p1 > - Assign maintainership to the submitter > PR: ports/134160 > Submitted by: Denis Barov > Revision Changes Path > 1.134 +21 -13 ports/security/openssh-portable/Makefile > 1.50 +6 -9 ports/security/openssh-portable/distinfo > 1.1 +32 -0 ports/security/openssh-portable/files/openssh-5.2p1-hpn-servconf.patch (new) > 1.1 +2196 -0 ports/security/openssh-portable/files/openssh-5.2p1-hpn.patch (new) > 1.1 +240 -0 ports/security/openssh-portable/files/openssh-lpk+hpn-servconf.patch (new) > 1.1 +222 -0 ports/security/openssh-portable/files/openssh-lpk-5.0p1-0.3.9-servconv.patch (new) > 1.2 +23 -236 ports/security/openssh-portable/files/openssh-lpk-5.0p1-0.3.9.patch