From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) (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 D7C0B3B1EEE for ; Thu, 20 Aug 2026 06:58:37 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=170.10.133.124 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787209119; cv=none; b=YIli0zqnbAIrToibXhXSf8or0z2uXUqY02GVFymiNg0J78CKpCZOQPwSWpyJxhr1ZBUeEdc5B0laQo0ZmvPtAH8O6B+XCeR4jiqz+3Sk/Y9FMGi9JBGOSR6c3CuE6E0anND2vft1I+BHcj/tnlyizjtiJHjttOPn1/KuLtA++0g= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787209119; c=relaxed/simple; bh=kynTe+djMAUMAKZWbeeP8HeejqzbszSZFzgZxBbA2uw=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=lv2sPZjMesRZD/aJRE0jrW1xOGmSAZLs/00j3+dFVhL7kHcAAZm8FyJ7zZWsotqL2F7YuLQkug3jwHSAlR1wnlsK5ksIkZJvhA9hrJ3dbNBfurq2WAzBa4iQzzrj28BDMi0Tah2JldeCGVhs+0DXwsXU0k5sw9T0DWt7xT2yRXc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=redhat.com; spf=pass smtp.mailfrom=redhat.com; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b=SIYG3raQ; arc=none smtp.client-ip=170.10.133.124 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=redhat.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=redhat.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="SIYG3raQ" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1787209116; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=1oMvv+ilbzFWyz0kC2CFBl3hm5fV9dGF5RL85Fpz3eM=; b=SIYG3raQkiOgkfaD11Cd9tf5pD6RGZq6GXHYk5L2rRU2rpmFmaiQ6SU6T9YhMmbyPxZARW 9//QoAwApZr5WUJMmXdEDD1iXtB172F16HwcSFdWxD8azmvPPCs+IM4w02wSrfwAX+avy2 qEQn4KDgDWkX2RHOBFiM67dW4DnYnT4= Received: from mx-prod-mc-05.mail-002.prod.us-west-2.aws.redhat.com (ec2-54-186-198-63.us-west-2.compute.amazonaws.com [54.186.198.63]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-650-Y0Wy8mjBNHCPmmkEF1NkVQ-1; Thu, 20 Aug 2026 02:58:21 -0400 X-MC-Unique: Y0Wy8mjBNHCPmmkEF1NkVQ-1 X-Mimecast-MFC-AGG-ID: Y0Wy8mjBNHCPmmkEF1NkVQ_1787209099 Received: from mx-prod-int-10.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-10.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.95]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mx-prod-mc-05.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id 93872195608B; Thu, 20 Aug 2026 06:58:19 +0000 (UTC) Received: from thuth-p1g4.redhat.com (unknown [10.44.32.124]) by mx-prod-int-10.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id 78FE0423; Thu, 20 Aug 2026 06:58:17 +0000 (UTC) From: Thomas Huth To: Namjae Jeon , Steve French , Tom Talpey Cc: Sergey Senozhatsky , linux-cifs@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] smb: server: Remove obsolete "select CRYPTO_LIB_DES" from Kconfig file Date: Thu, 20 Aug 2026 08:58:15 +0200 Message-ID: <20260820065816.44267-1-thuth@redhat.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 3.6 on 10.30.177.95 The DES encryption in the smb server code has been removed in 2021 with the removal of the insecure NTLMv1 authentication code. Thus we don't need this "select" statement here anymore. Fixes: ce812992f239f ("ksmbd: remove NTLMv1 authentication") Signed-off-by: Thomas Huth --- fs/smb/server/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/fs/smb/server/Kconfig b/fs/smb/server/Kconfig index 08d8b7a965a64..221ec9717a834 100644 --- a/fs/smb/server/Kconfig +++ b/fs/smb/server/Kconfig @@ -9,7 +9,6 @@ config SMB_SERVER select CRYPTO select CRYPTO_LIB_AES_CBC_MACS select CRYPTO_LIB_ARC4 - select CRYPTO_LIB_DES select CRYPTO_LIB_MD5 select CRYPTO_LIB_SHA256 select CRYPTO_LIB_SHA512 -- 2.55.0