From owner-svn-src-head@freebsd.org Sun Oct 21 15:33:04 2018 Return-Path: Delivered-To: svn-src-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 53AC8FF6C8C; Sun, 21 Oct 2018 15:33:04 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (br1.CN84in.dnsmgr.net [69.59.192.140]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C0DE992C0D; Sun, 21 Oct 2018 15:33:03 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (localhost [127.0.0.1]) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3) with ESMTP id w9LFX1w1005565; Sun, 21 Oct 2018 08:33:01 -0700 (PDT) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: (from freebsd@localhost) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3/Submit) id w9LFX1lq005564; Sun, 21 Oct 2018 08:33:01 -0700 (PDT) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <201810211533.w9LFX1lq005564@pdx.rh.CN85.dnsmgr.net> Subject: Re: svn commit: r339498 - head/sys/crypto/chacha20 In-Reply-To: <201810202212.w9KMCrl9061919@repo.freebsd.org> To: Conrad Meyer Date: Sun, 21 Oct 2018 08:33:01 -0700 (PDT) CC: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Reply-To: rgrimes@freebsd.org X-Mailer: ELM [version 2.4ME+ PL121h (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Oct 2018 15:33:04 -0000 > Author: cem > Date: Sat Oct 20 22:12:53 2018 > New Revision: 339498 > URL: https://svnweb.freebsd.org/changeset/base/339498 > > Log: > crypto/chacha: Split header into separate _chacha.h > > Sponsored by: Dell EMC Isilon > > Added: > head/sys/crypto/chacha20/_chacha.h (contents, props changed) > Modified: > head/sys/crypto/chacha20/chacha.h > > Added: head/sys/crypto/chacha20/_chacha.h > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/sys/crypto/chacha20/_chacha.h Sat Oct 20 22:12:53 2018 (r339498) > @@ -0,0 +1,12 @@ > +/* $FreeBSD$ */ > + > +#ifndef _CHACHA_H > +#define _CHACHA_H > + > +#include > + > +struct chacha_ctx { > + u_int input[16]; > +}; > + > +#endif This new file has neither a copyright or license which is out side of the project guidelines. > > Modified: head/sys/crypto/chacha20/chacha.h > ============================================================================== > --- head/sys/crypto/chacha20/chacha.h Sat Oct 20 21:49:44 2018 (r339497) > +++ head/sys/crypto/chacha20/chacha.h Sat Oct 20 22:12:53 2018 (r339498) > @@ -12,10 +12,7 @@ Public domain. > #define CHACHA_H > > #include > - > -struct chacha_ctx { > - u_int input[16]; > -}; > +#include > > #define CHACHA_MINKEYLEN 16 > #define CHACHA_NONCELEN 8 -- Rod Grimes rgrimes@freebsd.org