Re: [TLS] TLS v1.2 performance (was Re: TLSv1.2 with DSA client cert and

"Yngve N. Pettersen (Developer Opera Software ASA)" <yngve@opera.com> Thu, 17 February 2011 12:53 UTC

Return-Path: <yngve@opera.com>
X-Original-To: tls@core3.amsl.com
Delivered-To: tls@core3.amsl.com
Received: from localhost (localhost [127.0.0.1]) by core3.amsl.com (Postfix) with ESMTP id 51D573A6DE4 for <tls@core3.amsl.com>; Thu, 17 Feb 2011 04:53:51 -0800 (PST)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -6.599
X-Spam-Level:
X-Spam-Status: No, score=-6.599 tagged_above=-999 required=5 tests=[BAYES_00=-2.599, RCVD_IN_DNSWL_MED=-4]
Received: from mail.ietf.org ([64.170.98.32]) by localhost (core3.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fC3eUyWFluEM for <tls@core3.amsl.com>; Thu, 17 Feb 2011 04:53:50 -0800 (PST)
Received: from smtp.opera.com (smtp.opera.com [213.236.208.81]) by core3.amsl.com (Postfix) with ESMTP id E131C3A6A91 for <tls@ietf.org>; Thu, 17 Feb 2011 04:53:49 -0800 (PST)
Received: from acorna.oslo.osa (pat-tdc.opera.com [213.236.208.22]) (authenticated bits=0) by smtp.opera.com (8.14.3/8.14.3/Debian-5+lenny1) with ESMTP id p1HCsIVm000585 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for <tls@ietf.org>; Thu, 17 Feb 2011 12:54:19 GMT
Content-Type: text/plain; charset="iso-8859-15"; format="flowed"; delsp="yes"
To: tls@ietf.org
References: <201102162335.p1GNZ0Yd009478@fs4113.wdf.sap.corp> <4D5C65D2.4060502@pobox.com> <4D5CE08C.5060402@gnutls.org> <AANLkTimsFTBw=WtOopKfQkPnKJJH83kaHYuN89GBLEPC@mail.gmail.com> <AANLkTi=A61NKuyY6fZ2kaMfYOL1R4pHdvHUeVtWMhXpR@mail.gmail.com> <AANLkTikNYQ2h=fLnwscf-d=CfQoFoH0bZ9_MAnLNX86J@mail.gmail.com>
Date: Thu, 17 Feb 2011 13:54:32 +0100
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: "Yngve N. Pettersen (Developer Opera Software ASA)" <yngve@opera.com>
Organization: Opera Software AS
Message-ID: <op.vq1ss6hkqrq7tp@acorna.oslo.osa>
In-Reply-To: <AANLkTikNYQ2h=fLnwscf-d=CfQoFoH0bZ9_MAnLNX86J@mail.gmail.com>
User-Agent: Opera Mail/10.63 (Win32)
Subject: Re: [TLS] TLS v1.2 performance (was Re: TLSv1.2 with DSA client cert and
X-BeenThere: tls@ietf.org
X-Mailman-Version: 2.1.9
Precedence: list
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/listinfo/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: Thu, 17 Feb 2011 12:53:51 -0000

On Thu, 17 Feb 2011 11:54:35 +0100, Eric Rescorla <ekr@rtfm.com> wrote:

> On Thu, Feb 17, 2011 at 11:49 AM, Nikos Mavrogiannopoulos
> <nmav@gnutls.org> wrote:
>> On Thu, Feb 17, 2011 at 10:35 AM, Eric Rescorla <ekr@rtfm.com> wrote:
>>
>>>>> I see the potential problem.  For me, though, I just hold onto all
>>>>> of the handshake messages until the handshake concludes.  It may use
>>>>> a bit more memory for a short amount of time, but the issue you raise
>>>>> is completely avoided.  Call it a space <-> code complexity
>>>>> trade-off.
>>>> Indeed. There is no other way to correctly implement TLS 1.2 except
>>>> from holding a copy of all the handshake messages. This is problematic
>>>> when converting an implementation of TLS 1.0 or 1.1 to that, since
>>>> those protocols only required to hold the state of 1 or 2 running  
>>>> hashes.
>>> Is that really true?. My memory from the discussions and briefly
>>> refreshed by looking at the
>>> doc is that you only need to hold the messages until you see the
>>> ServerHello at which point
>>> you know the PRF and so you can just start storing hashes.
>>
>> Note that you're talking about the hashes required for the finished
>> messages and you're correct on this note. However there is also the
>> hash required for the CertificateVerify message. If the server requests
>> a client certificate then it has to store all messages up to (but not
>> including) the CertificateVerify message.
>> That is because he cannot possibly know which signature algorithm
>> hash the client will use.
>
> Agreed. I can't recall if we discussed this when this feature was being  
> designed
> for 5246 but ISTM that the only way to have this work that didn't have
> this property would be for the client to offer all his certificates
> up-front and the
> server to select one, since it's possible that each cert comes with a  
> specific
> hash algorithm tied to it.

How about removing the need to calculated the verify message based on a  
specific hash of the handshake message?

Currently the verify message is defined as


       struct {
            digitally-signed struct {
                opaque handshake_messages[handshake_messages_length];
            }
       } CertificateVerify;

How about changing that to this?


       struct {
            digitally-signed struct {
                 PRF(master_secret, verify_label, Hash(handshake_messages))
                           [0..f(Cert_Hash)-1];
            }
       } CertificateVerify;


This would remove the need to store all the handshake messages, or manage  
multiple hashes of the same data, since the handshake-hash would take care  
of that.

Using the PRF means that we can generate a string that is of sufficient  
length for each method, although an alternative if one think that is too  
complex, or generally unnecessary, is to just use Hash(handshake_messages).

A possible issue is how this would affect security if the Cert_Hash method  
is much more secure than the Hash method. My current opinion is that this  
can be handled by using f(Cert_Hash) to provide a sufficiently long PRF,  
unless there are issues I am unaware of with such a solution. I'll leave  
that to the members for experienced in cracking crypto constructs.

Of course, making this change requires a new TLS protocol version.

-- 
Sincerely,
Yngve N. Pettersen
********************************************************************
Senior Developer		     Email: yngve@opera.com
Opera Software ASA                   http://www.opera.com/
Phone:  +47 23 69 32 60              Fax:    +47 23 69 24 01
********************************************************************