From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id AD3862FB3; Sun, 3 Dec 2023 10:59:17 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="pXBbKzfi" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DB55CC433C9; Sun, 3 Dec 2023 10:59:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1701601157; bh=56CHr7439x2ncOqaZNQXMZy1ejsAwVMya/gSUcXsZ1Q=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=pXBbKzfilgcXS3sJsoSOtDgFNS0mq/wKvZJ26AzaS/uIh0hSUn+n4TovzXFyEX/Ka YYVDrOykUHd+5/SwySAJCcjZ/7rTBXDT0qrvJX0qbAi2v2mdpjpteqKvzRhS1aquwI 9G2xv9pYgV5+UXrfLxqQAbJMrPu3TMGpazKblkht/4EOLATC6RIbz7JY0tJ9g2yOiF MR6F7h71ggALimJxjs56is0sMbPjAkAlRjctE0ksyfgsmaK57vLn/dd7J4cvhE5jKh +dkbBiPKwE3HiAYayawwVRAoMcgY4G1cYKL8r59srhEREz1SMxjDiC0ODkYaZ7N/NS lkK6kPjDKQAuA== Date: Sun, 3 Dec 2023 10:59:12 +0000 From: Simon Horman To: Vadim Fedorenko Cc: Vadim Fedorenko , Jakub Kicinski , Martin KaFai Lau , Andrii Nakryiko , Alexei Starovoitov , Mykola Lysenko , Herbert Xu , netdev@vger.kernel.org, linux-crypto@vger.kernel.org, bpf@vger.kernel.org Subject: Re: [PATCH bpf-next v7 3/3] selftests: bpf: crypto skcipher algo selftests Message-ID: <20231203105912.GE50400@kernel.org> References: <20231202010604.1877561-1-vadfed@meta.com> <20231202010604.1877561-3-vadfed@meta.com> Precedence: bulk X-Mailing-List: bpf@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231202010604.1877561-3-vadfed@meta.com> On Fri, Dec 01, 2023 at 05:06:04PM -0800, Vadim Fedorenko wrote: > Add simple tc hook selftests to show the way to work with new crypto > BPF API. Some weird structre and map are added to setup program to make Hi Vadim, as it looks like there will be a new revision of this series, please consider updating the spelling of structure. > verifier happy about dynptr initialization from memory. Simple AES-ECB > algo is used to demonstrate encryption and decryption of fixed size > buffers. > > Signed-off-by: Vadim Fedorenko ...