From patchwork Fri Mar 4 18:00:06 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Ziegler X-Patchwork-Id: 8506761 X-Patchwork-Delegate: herbert@gondor.apana.org.au Return-Path: X-Original-To: patchwork-linux-crypto@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 19A12C0553 for ; Fri, 4 Mar 2016 18:00:54 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 54C662017E for ; Fri, 4 Mar 2016 18:00:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 663FD20173 for ; Fri, 4 Mar 2016 18:00:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759636AbcCDSAb (ORCPT ); Fri, 4 Mar 2016 13:00:31 -0500 Received: from faui40.informatik.uni-erlangen.de ([131.188.34.40]:37659 "EHLO faui40.informatik.uni-erlangen.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758814AbcCDSA2 (ORCPT ); Fri, 4 Mar 2016 13:00:28 -0500 Received: from faui49t (faui49t.informatik.uni-erlangen.de [131.188.42.17]) by faui40.informatik.uni-erlangen.de (Postfix) with SMTP id 03A7D58C4C6; Fri, 4 Mar 2016 19:00:24 +0100 (CET) Received: by faui49t (sSMTP sendmail emulation); Fri, 04 Mar 2016 19:00:23 +0100 From: Andreas Ziegler To: James Morris Cc: "Serge E. Hallyn" , David Howells , Herbert Xu , Tadeusz Struk , linux-security-module@vger.kernel.org, linux-crypto@vger.kernel.org, linux-kernel@vger.kernel.org, Valentin Rothberg , Andreas Ziegler Subject: [PATCH] security: integrity: Remove select to deleted option PUBLIC_KEY_ALGO_RSA Date: Fri, 4 Mar 2016 19:00:06 +0100 Message-Id: <1457114406-29804-1-git-send-email-andreas.ziegler@fau.de> X-Mailer: git-send-email 1.9.1 In-Reply-To: <18370.1457105029@warthog.procyon.org.uk> References: <18370.1457105029@warthog.procyon.org.uk> Sender: linux-crypto-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-crypto@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Commit d43de6c780a8 ("akcipher: Move the RSA DER encoding check to the crypto layer") removed the Kconfig option PUBLIC_KEY_ALGO_RSA, but forgot to remove a 'select' to this option in the definition of INTEGRITY_ASYMMETRIC_KEYS. Let's remove the select, as it's ineffective now. Signed-off-by: Andreas Ziegler --- security/integrity/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/security/integrity/Kconfig b/security/integrity/Kconfig index 979be65..da95658 100644 --- a/security/integrity/Kconfig +++ b/security/integrity/Kconfig @@ -35,7 +35,6 @@ config INTEGRITY_ASYMMETRIC_KEYS default n select ASYMMETRIC_KEY_TYPE select ASYMMETRIC_PUBLIC_KEY_SUBTYPE - select PUBLIC_KEY_ALGO_RSA select CRYPTO_RSA select X509_CERTIFICATE_PARSER help