Sophie

Sophie

distrib > Mandriva > 2010.2 > i586 > media > contrib-release-src > by-pkgid > 7ac4fa1ea5226ba0c0c9a527c7b4a484 > files > 6

uClibc-openssl-0.9.7g-4mdv2007.1.src.rpm

--- openssl-0.9.7e/crypto/x509v3/v3_alt.c.icpbrasil	2003-12-27 12:40:35.000000000 -0200
+++ openssl-0.9.7e/crypto/x509v3/v3_alt.c	2005-03-02 14:47:42.253532390 -0300
@@ -99,10 +99,53 @@
 {
 	unsigned char *p;
 	char oline[256];
+	int rc = 0;
+	
+	/* see http://www.iti.gov.br/resolucoes/RESOLU__O_13_DE_26_04_2002.PDF
+	 * for the OID definitions and more details
+	 * All content is ASN.1 OCTET STRING
+	 */
+	/* person related */
+	const char oid_id_pf[] = "2.16.76.1.3.1"; /* person identification data as follows:
+						   * birth date: ddmmyyyy (8)
+						   * CPF number: (11)
+						   * PIS/PASEP number: (11)
+						   * RG number: (11)
+						   * RG emmitter and state: (6)
+						   */
+	const char oid_el_pf[] = "2.16.76.1.3.5"; /* Electoral data:
+						   * card number: (11)
+						   * electoral zone: (3)
+						   * electoral section: (4)
+						   * city and state: (22)
+						   */
+	/* company related */
+	const char oid_pj_id1[] = "2.16.76.1.3.4"; /* info about the person responsible for the company's certificate:
+						    * birth date: ddmmyyyy (8)
+						    * CPF number: (11)
+						    * PIS/PASEP number: (11)
+						    * RG number: (11)
+						    * RG emitter and state: (6)
+						    */
+	const char oid_pj_name[] = "2.16.76.1.3.2"; /* Name of the person responsible for the company's certificate */
+	const char oid_pj_cnpj[] = "2.16.76.1.3.3"; /* CNPJ number of the company*/
+
 	switch (gen->type)
 	{
 		case GEN_OTHERNAME:
-		X509V3_add_value("othername","<unsupported>", &ret);
+		rc = OBJ_obj2txt(oline, sizeof(oline), gen->d.otherName->type_id, 1);
+		if (rc)
+			if ((!strncmp(oline, oid_id_pf, sizeof(oid_id_pf)))   ||
+			    (!strncmp(oline, oid_el_pf, sizeof(oid_el_pf)))   ||
+			    (!strncmp(oline, oid_pj_id1, sizeof(oid_pj_id1))) ||
+			    (!strncmp(oline, oid_pj_name, sizeof(oid_pj_name))) ||
+			    (!strncmp(oline, oid_pj_cnpj, sizeof(oid_pj_cnpj))))
+				/* FIXME: is that string always null terminated? */
+				X509V3_add_value("othername", gen->d.otherName->value->value.octet_string->data, &ret);
+			else
+				X509V3_add_value("othername","<unsupported>", &ret);
+		else
+			X509V3_add_value("othername","<unsupported>", &ret);
 		break;
 
 		case GEN_X400: