9front - general discussion about 9front
 help / color / mirror / Atom feed
* sha256 rsa signing in factotum
@ 2017-02-09  3:39 Nicolas Owens
  2017-02-09  8:05 ` [9front] " cinap_lenrek
  0 siblings, 1 reply; 2+ messages in thread
From: Nicolas Owens @ 2017-02-09  3:39 UTC (permalink / raw)
  To: 9front

[-- Attachment #1: Type: text/plain, Size: 112 bytes --]

attached is a diff to support sha256 in the pkcs#1 rsa signing in
factotum. if this seems okay, i'll commit it.

[-- Attachment #2: rsa.c.diff --]
[-- Type: text/plain, Size: 1217 bytes --]

diff -r 00c7fa1bc4fc sys/src/cmd/auth/factotum/rsa.c
--- a/sys/src/cmd/auth/factotum/rsa.c	Mon Feb 06 04:25:38 2017 +0100
+++ b/sys/src/cmd/auth/factotum/rsa.c	Thu Feb 09 03:35:36 2017 +0000
@@ -219,6 +219,8 @@
 			dlen = SHA1dlen;
 		else if(strcmp(hash, "md5") == 0)
 			dlen = MD5dlen;
+		else if(strcmp(hash, "sha256") == 0)
+			dlen = SHA2_256dlen;
 		else
 			return failure(fss, "unknown hash function %s", hash);
 		if(n != dlen)
@@ -299,6 +301,7 @@
  *
  * SHA1 = 1.3.14.3.2.26
  * MDx = 1.2.840.113549.2.x
+ * SHA256 = 2.16.840.1.101.3.4.2.1
  */
 #define O0(a,b)	((a)*40+(b))
 #define O2(x)	\
@@ -309,9 +312,8 @@
 	(((x)>> 7)&0x7F)|0x80, \
 	((x)&0x7F)
 uchar oidsha1[] = { O0(1, 3), 14, 3, 2, 26 };
-uchar oidmd2[] = { O0(1, 2), O2(840), O3(113549), 2, 2 };
 uchar oidmd5[] = { O0(1, 2), O2(840), O3(113549), 2, 5 };
-
+uchar oidsha256[] = { O0(2, 16), O2(840), 1, 101, 3, 4, 2, 1 };
 /*
  *	DigestInfo ::= SEQUENCE {
  *		digestAlgorithm AlgorithmIdentifier,
@@ -339,6 +341,9 @@
 	}else if(strcmp(alg, "md5") == 0){
 		obj = oidmd5;
 		olen = sizeof(oidmd5);
+	}else if(strcmp(alg, "sha256") == 0){
+		obj = oidsha256;
+		olen = sizeof(oidsha256);
 	}else{
 		sysfatal("bad alg in mkasn1");
 		return -1;

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [9front] sha256 rsa signing in factotum
  2017-02-09  3:39 sha256 rsa signing in factotum Nicolas Owens
@ 2017-02-09  8:05 ` cinap_lenrek
  0 siblings, 0 replies; 2+ messages in thread
From: cinap_lenrek @ 2017-02-09  8:05 UTC (permalink / raw)
  To: 9front

looks good to me, thank you.

--
cinap


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-02-09  8:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-09  3:39 sha256 rsa signing in factotum Nicolas Owens
2017-02-09  8:05 ` [9front] " cinap_lenrek

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).