From owner-svn-src-all@freebsd.org Tue May 31 14:45:02 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 47C7EB55A6D; Tue, 31 May 2016 14:45:02 +0000 (UTC) (envelope-from allanjude@freebsd.org) Received: from mx1.scaleengine.net (mx1.scaleengine.net [209.51.186.6]) by mx1.freebsd.org (Postfix) with ESMTP id 2C44F1A28; Tue, 31 May 2016 14:45:01 +0000 (UTC) (envelope-from allanjude@freebsd.org) Received: from [10.1.1.2] (unknown [10.1.1.2]) (Authenticated sender: allanjude.freebsd@scaleengine.com) by mx1.scaleengine.net (Postfix) with ESMTPSA id 711D5D06C; Tue, 31 May 2016 14:44:55 +0000 (UTC) Subject: Re: svn commit: r301010 - in head/sys: cddl/contrib/opensolaris/common/zfs cddl/contrib/opensolaris/uts/common cddl/contrib/opensolaris/uts/common/fs/zfs cddl/contrib/opensolaris/uts/common/fs/zfs/sys ... To: Ivan Klymenko References: <201605310412.u4V4CEh4021513@repo.freebsd.org> <20160531144155.7e96c5a5@nonamehost.local> Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org From: Allan Jude Message-ID: <10b10f89-0212-2a9d-06ed-6477ef658962@freebsd.org> Date: Tue, 31 May 2016 10:44:54 -0400 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.0 MIME-Version: 1.0 In-Reply-To: <20160531144155.7e96c5a5@nonamehost.local> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 May 2016 14:45:02 -0000 On 2016-05-31 07:41, Ivan Klymenko wrote: > On Tue, 31 May 2016 04:12:14 +0000 (UTC) > Allan Jude wrote: > >> Author: allanjude >> Date: Tue May 31 04:12:14 2016 >> New Revision: 301010 >> URL: https://svnweb.freebsd.org/changeset/base/301010 >> >> Log: >> Connect the SHA-512t256 and Skein hashing algorithms to ZFS >> >> Support for the new hashing algorithms in ZFS was introduced in >> r289422 However it was disconnected because FreeBSD lacked >> implementations of SHA-512 (truncated to 256 bits), and Skein. >> >> These implementations were introduced in r300921 and r300966 >> respectively >> This commit connects them to ZFS and enabled these new checksum >> algorithms >> This new algorithms are not supported by the boot blocks, so do not >> use them on your root dataset if you boot from ZFS. >> > > Hello. > > Tell me please, who is now the fastest of these algorithms? > > What remains of the available algorithms checksum algorithm by default? > > Thanks. > None of the old checksums were removed This means the available checksums are (from fastest to slowest): off (bad idea) fletcher2 (not recommended, weak) fletcher4 (default) edon-r (not implemented, possibly insecure) skein sha512 sha256 -- Allan Jude