Re: [TLS] Deployment ... Re: This working group has failed

mrex@sap.com (Martin Rex) Tue, 19 November 2013 19:49 UTC

Return-Path: <mrex@sap.com>
X-Original-To: tls@ietfa.amsl.com
Delivered-To: tls@ietfa.amsl.com
Received: from localhost (ietfa.amsl.com [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 90DBB1AE19D for <tls@ietfa.amsl.com>; Tue, 19 Nov 2013 11:49:58 -0800 (PST)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.552
X-Spam-Level:
X-Spam-Status: No, score=-6.552 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, HELO_EQ_DE=0.35, RCVD_IN_DNSWL_HI=-5, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] autolearn=ham
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 47AmEl30Z6y8 for <tls@ietfa.amsl.com>; Tue, 19 Nov 2013 11:49:56 -0800 (PST)
Received: from smtpde01.sap-ag.de (smtpde01.sap-ag.de [155.56.68.170]) by ietfa.amsl.com (Postfix) with ESMTP id 2539F1A1F7C for <tls@ietf.org>; Tue, 19 Nov 2013 11:49:55 -0800 (PST)
Received: from mail06.wdf.sap.corp by smtpde01.sap-ag.de (26) with ESMTP id rAJJnmag016745 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 19 Nov 2013 20:49:48 +0100 (MET)
In-Reply-To: <e2d8b5d7303349d1be3d2f2b43cfdb30@BY2PR03MB074.namprd03.prod.outlook.com>
To: Marsh Ray <maray@microsoft.com>
Date: Tue, 19 Nov 2013 20:49:48 +0100
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: <20131119194948.C9A1C1AAB7@ld9781.wdf.sap.corp>
From: mrex@sap.com
X-SAP: out
Cc: "tls@ietf.org" <tls@ietf.org>, Michael Staubermann <Michael.Staubermann@webolution.de>
Subject: Re: [TLS] Deployment ... Re: This working group has failed
X-BeenThere: tls@ietf.org
X-Mailman-Version: 2.1.15
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: Tue, 19 Nov 2013 19:49:58 -0000

Marsh Ray wrote:
> Martin Rex wrote:
> > 
> > The TLSv1.1 PRF should be OK for 128-bit security strength.
> 
> TLS 1.1 https://tools.ietf.org/html/rfc4346#page-13
> "   TLS's PRF is created by splitting the secret into two halves and
>    using one half to generate data with P_MD5 and the other half to
>    generate data with P_SHA-1, then exclusive-ORing the outputs of these
>    two expansion functions together."
> 
> Good for 160 bits I figure?
> 
> TLS 1.2  https://tools.ietf.org/html/rfc5246#page-14
> "   In this section, we define one PRF, based on HMAC.  This PRF with the
>    SHA-256 hash function is used for all cipher suites defined in this
>    document and in TLS documents published prior to this document when
>    TLS 1.2 is negotiated.  New cipher suites MUST explicitly specify a
>    PRF and, in general, SHOULD use the TLS PRF with SHA-256 or a
>    stronger standard hash function.
> "
> Sounds stronger to me.

The weakest link in the chain determines the strength, not the
strongest link in the chain.

NIST SP800-57 provides the following guidance on strength:

Bits of   symm.    FFC       IFC     ECC     Hash     Hash     Hash
security cipher  (DSA/DH) (e.g.RSA)         DigSig    HMAC   KeyDeriv

  80     2TDES    1024/160   1024  160-223   SHA-1    SHA-1    SHA-1
 112     3TDES    2048/224   2048  224-255  SHA-224   SHA-1    SHA-1
 128    AES-128   3072/256   3072  256-383  SHA-256   SHA-1    SHA-1
 192    AES-192   7680/384   7680  384-511  SHA-384  SHA-224  SHA-224
 256    AES-256  15360/512  15360   512+    SHA-512  SHA-256  SHA-256

So for use with RSA-2048 certs and AES128 encryption, the
TLSv1.0/v1.1 PRF should be OK.  You may want to look at how
many signatures in certificates, CRLs, OCSP, etc. still use
SHA-1, and where this gets you in the above table.


-Martin