[Trans] draft-ietf-trans-rfc6962-bis

Russ Housley <housley@vigilsec.com> Mon, 26 April 2021 13:43 UTC

Return-Path: <housley@vigilsec.com>
X-Original-To: trans@ietfa.amsl.com
Delivered-To: trans@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id F1F3B3A2008 for <trans@ietfa.amsl.com>; Mon, 26 Apr 2021 06:43:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.898
X-Spam-Level:
X-Spam-Status: No, score=-1.898 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_NONE=0.001] autolearn=ham autolearn_force=no
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 xbkdMfEP2Zdt for <trans@ietfa.amsl.com>; Mon, 26 Apr 2021 06:43:12 -0700 (PDT)
Received: from mail.smeinc.net (mail.smeinc.net [209.135.209.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 730083A2007 for <trans@ietf.org>; Mon, 26 Apr 2021 06:43:12 -0700 (PDT)
Received: from localhost (localhost [127.0.0.1]) by mail.smeinc.net (Postfix) with ESMTP id BB16C300B02 for <trans@ietf.org>; Mon, 26 Apr 2021 09:43:07 -0400 (EDT)
X-Virus-Scanned: amavisd-new at mail.smeinc.net
Received: from mail.smeinc.net ([127.0.0.1]) by localhost (mail.smeinc.net [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id q6Vy5yBH5xZi for <trans@ietf.org>; Mon, 26 Apr 2021 09:42:52 -0400 (EDT)
Received: from a860b60074bd.fios-router.home (pool-141-156-161-153.washdc.fios.verizon.net [141.156.161.153]) by mail.smeinc.net (Postfix) with ESMTPSA id 50D7D300AEF for <trans@ietf.org>; Mon, 26 Apr 2021 09:42:48 -0400 (EDT)
From: Russ Housley <housley@vigilsec.com>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
Mime-Version: 1.0 (Mac OS X Mail 12.4 \(3445.104.17\))
Message-Id: <C514E596-A3BD-46BA-9652-DD2AA1FFFBD4@vigilsec.com>
Date: Mon, 26 Apr 2021 09:42:47 -0400
To: trans@ietf.org
X-Mailer: Apple Mail (2.3445.104.17)
Archived-At: <https://mailarchive.ietf.org/arch/msg/trans/hiX1cpreXLPMzrlFTui38KKu0oc>
Subject: [Trans] draft-ietf-trans-rfc6962-bis
X-BeenThere: trans@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Public Notary Transparency working group discussion list <trans.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/trans>, <mailto:trans-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/trans/>
List-Post: <mailto:trans@ietf.org>
List-Help: <mailto:trans-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/trans>, <mailto:trans-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 26 Apr 2021 13:43:15 -0000

Hi.

A long time ago, I wrote an open source pyasn1 module for RFC 6962.  I just looked at the bis document to see what would need to change.  It turns out there there is a fair amount.

I was wondering if you would be willing to as an ASN.1 module as an appendix.  Right now, an implementer needs to do a fair amount of work to find all of the OID values and some of them do not have names.  For example:

     -  "eContentType" MUST be the OID 1.3.101.78.

By having an ASN.1 module, this OID will be easily recognized as a content type, and the syntax of the type:

   IMPORTS

  TBSCertificate
  FROM PKIX1Explicit-2009 -- RFC 5912
      { iso(1) identified-organization(3) dod(6) internet(1)
        security(5) mechanisms(5) pkix(7) id-mod(0)
        id-mod-pkix1-explicit-02(51) }

   CONTENT-TYPE
   FROM CryptographicMessageSyntax-2010  -- RFC 6268
       { iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1)
          pkcs-9(9) smime(16) modules(0) id-mod-cms-2009(58) } ;

  ct-precertificateContent CONTENT-TYPE ::=
     { TYPE TBSCertificate IDENTIFIED BY
       id-ct-precertificateContent }

  id-ct-precertificateContent OBJECT IDENTIFIER ::= { 1 3 101 78 }


There are parallel benefits for the extension definitions.

I am willing to review the module and ensure that it compiles properly.

Russ