9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: erik quanstrom <quanstro@quanstro.net>
To: 9fans@9fans.net
Subject: Re: [9fans] APE libsec
Date: Tue,  5 Feb 2013 10:38:54 -0500	[thread overview]
Message-ID: <01b90367d1b21dd4d899771ed5189c3a@kw.quanstro.net> (raw)
In-Reply-To: <09803b4d93511fdb3e2232a9759e5aa8@isd.dp.ua>

looks good, but i'd do libsec at the same time.
unless you know of a compelling reason for these
to support a different set of algorithms?

- erik

 ; diffy -c /sys/src/libsec/port/x509.c /sys/src/ape/lib/sec/port/x509-ape.c
diff -c /n/dump/2013/0205/sys/src/libsec/port/x509.c /sys/src/libsec/port/x509.c
/n/dump/2013/0205/sys/src/libsec/port/x509.c:1582,1587 - /sys/src/libsec/port/x509.c:1582,1589
  	ALG_md5WithRSAEncryption,
  	ALG_sha1WithRSAEncryption,
  	ALG_sha1WithRSAEncryptionOiw,
+ 	ALG_sha256WithRSAEncryption,
+ 	ALG_shaWithRSASignatureOiw,
  	ALG_md5,
  	NUMALGS
  };
/n/dump/2013/0205/sys/src/libsec/port/x509.c:1595,1600 - /sys/src/libsec/port/x509.c:1597,1604
  static Ints7 oid_md5WithRSAEncryption = {7, 1, 2, 840, 113549, 1, 1, 4 };
  static Ints7 oid_sha1WithRSAEncryption ={7, 1, 2, 840, 113549, 1, 1, 5 };
  static Ints7 oid_sha1WithRSAEncryptionOiw ={6, 1, 3, 14, 3, 2, 29 };
+ static Ints7 oid_sha256WithRSAEncryption ={7, 1, 2, 840, 113549, 1, 1, 11 };
+ static Ints7 oid_shaWithRSASignatureOiw ={6, 1, 3, 14, 3, 2, 15 };
  static Ints7 oid_md5 ={6, 1, 2, 840, 113549, 2, 5, 0 };
  static Ints *alg_oid_tab[NUMALGS+1] = {
  	(Ints*)&oid_rsaEncryption,
/n/dump/2013/0205/sys/src/libsec/port/x509.c:1603,1608 - /sys/src/libsec/port/x509.c:1607,1614
  	(Ints*)&oid_md5WithRSAEncryption,
  	(Ints*)&oid_sha1WithRSAEncryption,
  	(Ints*)&oid_sha1WithRSAEncryptionOiw,
+ 	(Ints*)&oid_sha256WithRSAEncryption,
+ 	(Ints*)&oid_shaWithRSASignatureOiw,
  	(Ints*)&oid_md5,
  	nil
  };
diff -c /n/dump/2013/0205/sys/src/ape/lib/sec/port/x509-ape.c /sys/src/ape/lib/sec/port/x509-ape.c
/n/dump/2013/0205/sys/src/ape/lib/sec/port/x509-ape.c:1582,1587 - /sys/src/ape/lib/sec/port/x509-ape.c:1582,1589
  	ALG_md5WithRSAEncryption,
  	ALG_sha1WithRSAEncryption,
  	ALG_sha1WithRSAEncryptionOiw,
+ 	ALG_sha256WithRSAEncryption,
+ 	ALG_shaWithRSASignatureOiw,
  	ALG_md5,
  	NUMALGS
  };
/n/dump/2013/0205/sys/src/ape/lib/sec/port/x509-ape.c:1595,1600 - /sys/src/ape/lib/sec/port/x509-ape.c:1597,1604
  static Ints7 oid_md5WithRSAEncryption = {7, 1, 2, 840, 113549, 1, 1, 4 };
  static Ints7 oid_sha1WithRSAEncryption ={7, 1, 2, 840, 113549, 1, 1, 5 };
  static Ints7 oid_sha1WithRSAEncryptionOiw ={6, 1, 3, 14, 3, 2, 29 };
+ static Ints7 oid_sha256WithRSAEncryption ={7, 1, 2, 840, 113549, 1, 1, 11 };
+ static Ints7 oid_shaWithRSASignatureOiw ={6, 1, 3, 14, 3, 2, 15 };
  static Ints7 oid_md5 ={6, 1, 2, 840, 113549, 2, 5, 0 };
  static Ints *alg_oid_tab[NUMALGS+1] = {
  	(Ints*)&oid_rsaEncryption,
/n/dump/2013/0205/sys/src/ape/lib/sec/port/x509-ape.c:1603,1608 - /sys/src/ape/lib/sec/port/x509-ape.c:1607,1614
  	(Ints*)&oid_md5WithRSAEncryption,
  	(Ints*)&oid_sha1WithRSAEncryption,
  	(Ints*)&oid_sha1WithRSAEncryptionOiw,
+ 	(Ints*)&oid_sha256WithRSAEncryption,
+ 	(Ints*)&oid_shaWithRSASignatureOiw,
  	(Ints*)&oid_md5,
  	nil
  };



  parent reply	other threads:[~2013-02-05 15:38 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-02-04 11:31 Yaroslav
2013-02-04 11:44 ` Yaroslav
2013-02-04 16:11   ` Jeff Sickel
2013-02-05  8:32     ` yaroslav
2013-02-05  8:41       ` Jens Staal
2013-02-05 15:28         ` erik quanstrom
2013-02-05 15:38       ` erik quanstrom [this message]
2013-02-08 15:35         ` Yaroslav
2013-02-09  2:46           ` Jeff Sickel
2013-02-12 21:27             ` michaelian ennis
2013-02-04 13:06 ` lucio
2013-02-04 15:46   ` erik quanstrom
2013-02-04 15:50     ` lucio

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=01b90367d1b21dd4d899771ed5189c3a@kw.quanstro.net \
    --to=quanstro@quanstro.net \
    --cc=9fans@9fans.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).