Re: [TLS] Using RSA PSS in TLS

mrex@sap.com (Martin Rex) Mon, 14 October 2013 12:12 UTC

Return-Path: <mrex@sap.com>
X-Original-To: tls@ietfa.amsl.com
Delivered-To: tls@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A736311E817E for <tls@ietfa.amsl.com>; Mon, 14 Oct 2013 05:12:44 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -9.899
X-Spam-Level:
X-Spam-Status: No, score=-9.899 tagged_above=-999 required=5 tests=[AWL=0.350, BAYES_00=-2.599, HELO_EQ_DE=0.35, RCVD_IN_DNSWL_HI=-8]
Received: from mail.ietf.org ([12.22.58.30]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sD731TEO-v5G for <tls@ietfa.amsl.com>; Mon, 14 Oct 2013 05:12:39 -0700 (PDT)
Received: from smtpde01.sap-ag.de (smtpde01.sap-ag.de [155.56.68.170]) by ietfa.amsl.com (Postfix) with ESMTP id 34AD111E8138 for <tls@ietf.org>; Mon, 14 Oct 2013 05:12:35 -0700 (PDT)
Received: from mail05.wdf.sap.corp by smtpde01.sap-ag.de (26) with ESMTP id r9ECCYLi025617 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 14 Oct 2013 14:12:34 +0200 (MEST)
In-Reply-To: <525BADBD.8020007@secunet.com>
To: Johannes Merkle <johannes.merkle@secunet.com>
Date: Mon, 14 Oct 2013 14:12:34 +0200
X-Mailer: ELM [version 2.4ME+ PL125 (25)]
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Type: text/plain; charset="US-ASCII"
Message-Id: <20131014121234.3936B1A9F9@ld9781.wdf.sap.corp>
From: mrex@sap.com
X-SAP: out
Cc: "<tls@ietf.org>" <tls@ietf.org>
Subject: Re: [TLS] Using RSA PSS in TLS
X-BeenThere: tls@ietf.org
X-Mailman-Version: 2.1.12
Precedence: list
Reply-To: mrex@sap.com
List-Id: "This is the mailing list for the Transport Layer Security working group of the IETF." <tls.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/tls>, <mailto:tls-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/mail-archive/web/tls>
List-Post: <mailto:tls@ietf.org>
List-Help: <mailto:tls-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/tls>, <mailto:tls-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 14 Oct 2013 12:12:44 -0000

Johannes Merkle wrote:
>
> While the current discussion on this list is about ECC,
> I would like to raise the question if it were not desirable to
> allow usage of provably secure RSA-PSS signatures from PKCS#1v2.1 in TLS.
> 
> Of course, an issue with this idea is that, if we replace DHE_RSA and
> ECDHE_RSA with DHE_PSS and ECDHE_PSS, we end up
> with a whole bunch of new cipher suites. An alternative could be a
> new extension signaling the RSA version used (with
> PKCS#1v1.5 as default).
> 
> Any thoughts on that?

RSA-PSS would apply only to the DHE_RSA variants, for the vanilla
RSA ciphersuites, one would need RSA-OAEP instead, and it seems
that using a traditional RSA key/cert for both, signature and
encryption is somewhat incompatible with RSA-PSS/RSA-OAEP -- when
signaling is through the AlgorithmIdentifier in SPKI of the
entity certificate.

Having to support two seperate server certificate (different by algorithm)
would have a huge impact on
   - TLS implementations
   - administrative UIs
   - server administration procedures
   - CA procedures

What exactly is the real and serious problem that such a HUGE change
would be trying to fix?


-Martin