Blame SOURCES/openssl-1.1.1-ts-sha256-default.patch

da7b65
diff -up openssl-1.1.1h/apps/openssl.cnf.ts-sha256-default openssl-1.1.1h/apps/openssl.cnf
da7b65
--- openssl-1.1.1h/apps/openssl.cnf.ts-sha256-default	2020-11-06 11:07:28.850100899 +0100
da7b65
+++ openssl-1.1.1h/apps/openssl.cnf	2020-11-06 11:11:28.042913791 +0100
da7b65
@@ -364,5 +348,5 @@ tsa_name		= yes	# Must the TSA name be i
da7b65
 				# (optional, default: no)
da7b65
 ess_cert_id_chain	= no	# Must the ESS cert id chain be included?
da7b65
 				# (optional, default: no)
da7b65
-ess_cert_id_alg		= sha1	# algorithm to compute certificate
da7b65
+ess_cert_id_alg		= sha256	# algorithm to compute certificate
da7b65
 				# identifier (optional, default: sha1)
da7b65
diff -up openssl-1.1.1h/apps/ts.c.ts-sha256-default openssl-1.1.1h/apps/ts.c
da7b65
--- openssl-1.1.1h/apps/ts.c.ts-sha256-default	2020-09-22 14:55:07.000000000 +0200
da7b65
+++ openssl-1.1.1h/apps/ts.c	2020-11-06 11:07:28.883101220 +0100
da7b65
@@ -423,7 +423,7 @@ static TS_REQ *create_query(BIO *data_bi
3a273b
     ASN1_OBJECT *policy_obj = NULL;
3a273b
     ASN1_INTEGER *nonce_asn1 = NULL;
3a273b
 
3a273b
-    if (md == NULL && (md = EVP_get_digestbyname("sha1")) == NULL)
3a273b
+    if (md == NULL && (md = EVP_get_digestbyname("sha256")) == NULL)
3a273b
         goto err;
3a273b
     if ((ts_req = TS_REQ_new()) == NULL)
3a273b
         goto err;
da7b65
diff -up openssl-1.1.1h/crypto/ts/ts_conf.c.ts-sha256-default openssl-1.1.1h/crypto/ts/ts_conf.c
da7b65
--- openssl-1.1.1h/crypto/ts/ts_conf.c.ts-sha256-default	2020-11-06 12:03:51.226372867 +0100
da7b65
+++ openssl-1.1.1h/crypto/ts/ts_conf.c	2020-11-06 12:04:01.713488990 +0100
da7b65
@@ -476,7 +476,7 @@ int TS_CONF_set_ess_cert_id_digest(CONF
da7b65
     const char *md = NCONF_get_string(conf, section, ENV_ESS_CERT_ID_ALG);
da7b65
 
da7b65
     if (md == NULL)
da7b65
-        md = "sha1";
da7b65
+        md = "sha256";
da7b65
 
da7b65
     cert_md = EVP_get_digestbyname(md);
da7b65
     if (cert_md == NULL) {
da7b65
diff -up openssl-1.1.1h/doc/man1/ts.pod.ts-sha256-default openssl-1.1.1h/doc/man1/ts.pod
da7b65
--- openssl-1.1.1h/doc/man1/ts.pod.ts-sha256-default	2020-09-22 14:55:07.000000000 +0200
da7b65
+++ openssl-1.1.1h/doc/man1/ts.pod	2020-11-06 11:07:28.883101220 +0100
da7b65
@@ -518,7 +518,7 @@ included. Default is no. (Optional)
3a273b
 =item B<ess_cert_id_alg>
3a273b
 
3a273b
 This option specifies the hash function to be used to calculate the TSA's
3a273b
-public key certificate identifier. Default is sha1. (Optional)
3a273b
+public key certificate identifier. Default is sha256. (Optional)
3a273b
 
3a273b
 =back
3a273b
 
da7b65
@@ -530,7 +530,7 @@ openssl/apps/openssl.cnf will do.
3a273b
 
3a273b
 =head2 Time Stamp Request
3a273b
 
da7b65
-To create a timestamp request for design1.txt with SHA-1
da7b65
+To create a timestamp request for design1.txt with SHA-256
3a273b
 without nonce and policy and no certificate is required in the response:
3a273b
 
3a273b
   openssl ts -query -data design1.txt -no_nonce \
da7b65
@@ -546,12 +546,12 @@ To print the content of the previous req
3a273b
 
3a273b
   openssl ts -query -in design1.tsq -text
3a273b
 
da7b65
-To create a timestamp request which includes the MD-5 digest
da7b65
+To create a timestamp request which includes the SHA-512 digest
3a273b
 of design2.txt, requests the signer certificate and nonce,
3a273b
 specifies a policy id (assuming the tsa_policy1 name is defined in the
3a273b
 OID section of the config file):
3a273b
 
3a273b
-  openssl ts -query -data design2.txt -md5 \
3a273b
+  openssl ts -query -data design2.txt -sha512 \
3a273b
         -tspolicy tsa_policy1 -cert -out design2.tsq
3a273b
 
3a273b
 =head2 Time Stamp Response