Revision: 13737
          http://sourceforge.net/p/skim-app/code/13737
Author:   hofman
Date:     2023-11-09 15:01:31 +0000 (Thu, 09 Nov 2023)
Log Message:
-----------
use -sha1 option rather than -dss in sign script

Modified Paths:
--------------
    trunk/build_skim.py

Modified: trunk/build_skim.py
===================================================================
--- trunk/build_skim.py 2023-11-07 23:41:07 UTC (rev 13736)
+++ trunk/build_skim.py 2023-11-09 15:01:31 UTC (rev 13737)
@@ -395,7 +395,7 @@
     
     # now run the signature for Sparkle...
     sha_task = Popen(["/usr/bin/openssl", "dgst", "-sha1", "-binary"], 
stdin=open(archive_path, "rb"), stdout=PIPE)
-    dss_task = Popen(["/usr/bin/openssl", "dgst", "-dss1", "-sign", 
keyFile.name], stdin=sha_task.stdout, stdout=PIPE)
+    dss_task = Popen(["/usr/bin/openssl", "dgst", "-sha1", "-sign", 
keyFile.name], stdin=sha_task.stdout, stdout=PIPE)
     b64_task = Popen(["/usr/bin/openssl", "enc", "-base64"], 
stdin=dss_task.stdout, stdout=PIPE)
     
     # now compute the variables we need for writing the new appcast

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
Skim-app-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/skim-app-commit

Reply via email to