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 B40FE156DA; Sun, 5 Nov 2023 19:33:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="MDJkErVA" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C46F5C433C8; Sun, 5 Nov 2023 19:33:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1699212785; bh=1ZSn8fX1O+pE4SPZosecaz3eXsXrtCg5RT9YyalLzBo=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=MDJkErVAgzE5crGSHh9WVGqTANQW6FYwKB+ggVryU3HKPwW3R6wjoQR5CbA4YD9w2 LcJ0Wtwe6qzm6WV2AL8nlOSTNJxfH4Mh3tSVYkhFvn5BM9fvxILPt930TbZS664iwl go2apfOhcyRzx13OulPkXhb4XADFnWT0i48k33wUnfy4a6MMQrc/iTdRTU5rwzbf+M lQId99jXFLhOeJrsgM0D2LoVIJnbHXuppXlxEq3+j17Nzxmiu904HLzLHrLlyjYoOj Y+21BauTD0lf+QjXFD2mIqLdEKNlHOccETUWyRCDMB20gdEZz+/ON/i4SZy9udTirw bfVm9Hmqz8oFA== Date: Sun, 5 Nov 2023 11:33:03 -0800 From: Eric Biggers To: ronnie sahlberg Cc: Steve French , John Sanpe , stfrench@microsoft.com, linkinjeon@kernel.org, pc@manguebit.com, sprasad@microsoft.com, linux-cifs@vger.kernel.org, llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev, linux-kernel@vger.kernel.org, samba-technical , Jeremy Allison Subject: Re: [PATCH] fs/smb: using crypto lib instead cifs_arc4 Message-ID: <20231105193303.GA91123@sol.localdomain> References: <20231022183917.1013135-1-sanpeqf@gmail.com> Precedence: bulk X-Mailing-List: llvm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: On Mon, Oct 23, 2023 at 05:42:11AM +1000, ronnie sahlberg wrote: > You are right. The reason that arc4 and friend were moved into cifs > was because the crypto guys told us "we will delete these algorithms > from the crypto library" This was suggested for md4 but not for arc4. arc4 still has multiple users in the kernel, so having it as a library makes sense. - Eric