Re: [openpgp] "OpenPGP Simple"

Peter Gutmann <pgut001@cs.auckland.ac.nz> Tue, 17 March 2015 02:10 UTC

Return-Path: <pgut001@cs.auckland.ac.nz>
X-Original-To: openpgp@ietfa.amsl.com
Delivered-To: openpgp@ietfa.amsl.com
Received: from localhost (ietfa.amsl.com [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8BF441ACDE7 for <openpgp@ietfa.amsl.com>; Mon, 16 Mar 2015 19:10:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.21
X-Spam-Level:
X-Spam-Status: No, score=-4.21 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, RCVD_IN_DNSWL_MED=-2.3, T_RP_MATCHES_RCVD=-0.01] 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 NhZ3S2hl0x11 for <openpgp@ietfa.amsl.com>; Mon, 16 Mar 2015 19:10:18 -0700 (PDT)
Received: from mx2.auckland.ac.nz (mx2.auckland.ac.nz [130.216.125.245]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 1254E1ACDE0 for <openpgp@ietf.org>; Mon, 16 Mar 2015 19:10:17 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=auckland.ac.nz; i=@auckland.ac.nz; q=dns/txt; s=uoa; t=1426558219; x=1458094219; h=from:to:subject:date:message-id: content-transfer-encoding:mime-version; bh=b4Qc4/VXHRrKTtmfRNUUVN/z/ZJA2e51FE/laIcDhHc=; b=WHFQr04V6QbJdNaQ/yTOX/uApXrlNpBimHlix3u0L2uxxlflICn+ria7 eC/2x/a7ygZXj4ZTsNAiMCx+O7v9XxATgVYn28aHlOBI0ZFJc9423ML6o rl+//Kc/vi2FoeOC+B3YaejLFoz5JNEJkc3vKIHlhn7HI++rSmlrjlsdT o=;
X-IronPort-AV: E=Sophos;i="5.11,413,1422874800"; d="scan'208";a="314335379"
X-Ironport-HAT: MAIL-SERVERS - $RELAYED
X-Ironport-Source: 130.216.4.106 - Outgoing - Outgoing
Received: from uxchange10-fe2.uoa.auckland.ac.nz ([130.216.4.106]) by mx2-int.auckland.ac.nz with ESMTP/TLS/AES128-SHA; 17 Mar 2015 15:10:17 +1300
Received: from UXCN10-5.UoA.auckland.ac.nz ([169.254.5.82]) by uxchange10-fe2.UoA.auckland.ac.nz ([130.216.4.106]) with mapi id 14.03.0174.001; Tue, 17 Mar 2015 15:10:16 +1300
From: Peter Gutmann <pgut001@cs.auckland.ac.nz>
To: "openpgp@ietf.org" <openpgp@ietf.org>
Thread-Topic: [openpgp] "OpenPGP Simple"
Thread-Index: AdBgV4KGYKmsrw3ZR5OHrnJhCvQhDA==
Date: Tue, 17 Mar 2015 02:10:16 +0000
Message-ID: <9A043F3CF02CD34C8E74AC1594475C73AAFB3823@uxcn10-5.UoA.auckland.ac.nz>
Accept-Language: en-NZ, en-GB, en-US
Content-Language: en-NZ
X-MS-Has-Attach:
X-MS-TNEF-Correlator:
x-originating-ip: [130.216.158.4]
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0
Archived-At: <http://mailarchive.ietf.org/arch/msg/openpgp/y1CsotTTfu9liuZCIXu34VZI_HM>
Subject: Re: [openpgp] "OpenPGP Simple"
X-BeenThere: openpgp@ietf.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: "Ongoing discussion of OpenPGP issues." <openpgp.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/openpgp>, <mailto:openpgp-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/mail-archive/web/openpgp/>
List-Post: <mailto:openpgp@ietf.org>
List-Help: <mailto:openpgp-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/openpgp>, <mailto:openpgp-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 17 Mar 2015 02:10:23 -0000

David Shaw <dshaw@jabberwocky.com> writes:
>On Mar 16, 2015, at 5:15 PM, David Leon Gil <coruus@gmail.com> wrote:
>> Partial lengths are really a nuisance to parse.
>
>No argument there...

The whole bizarro sort-of-fixed-point encoding of lengths is a pain (this is a
cue for Jon to do his "every bit is sacred" dance).  If the format is revised,
there should be only two lengths, a 16-bit one for almost everything (keyring
data, signatures, etc), and a 32-bit one for payloads and partial lengths that
are going to exceed 16-bit lengths.  Length-decoding shouldn't be any more
complicated than:

read tag;
if( tag & length_32_flag )
  length = read32();
else
  length = read16();

While I'm venting, shall I get started on the MDC kludge?

Peter.