[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:21:25 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 2b4c91953cb1eeec94e3cad1b42784d791f769f3
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jan 8 23:47:22 2004 +0000

            Reviewed by John.
    
    	<rdar://problem/3522298>: Error on MIT's x509 certificate site
    
            * WebCoreSupport.subproj/WebKeyGeneration.cpp:
            (addCertificatesToKeychainFromData): Sign the freshly minted public key
    	using RSA/MD5 instead of RSA/SHA-1, because MIT only supports MD5.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5874 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 0b617e0..8269566 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,13 @@
+2004-01-08  Maciej Stachowiak  <mjs at apple.com>
+
+        Reviewed by John.
+
+	<rdar://problem/3522298>: Error on MIT's x509 certificate site
+
+        * WebCoreSupport.subproj/WebKeyGeneration.cpp:
+        (addCertificatesToKeychainFromData): Sign the freshly minted public key
+	using RSA/MD5 instead of RSA/SHA-1, because MIT only supports MD5.
+
 2004-01-08  Richard Williamson   <rjw at apple.com>
 
 	Fixed 3524430.  This was a regression introduced when we added '-' and '?' to the word boundary detection.
diff --git a/WebKit/WebCoreSupport.subproj/WebKeyGeneration.cpp b/WebKit/WebCoreSupport.subproj/WebKeyGeneration.cpp
index e6ccad2..943b49f 100644
--- a/WebKit/WebCoreSupport.subproj/WebKeyGeneration.cpp
+++ b/WebKit/WebCoreSupport.subproj/WebKeyGeneration.cpp
@@ -21,8 +21,8 @@
 
 /* hard coded params, some of which may come from the user in real life */
 #define GNR_KEY_ALG			CSSM_ALGID_RSA
-#define GNR_SIG_ALG			CSSM_ALGID_SHA1WithRSA
-#define GNR_SIG_ALGOID                  CSSMOID_SHA1WithRSA
+#define GNR_SIG_ALG			CSSM_ALGID_MD5WithRSA
+#define GNR_SIG_ALGOID                  CSSMOID_MD5WithRSA
 
 const SEC_ASN1Template NetscapeCertSequenceTemplate[] = {
 { SEC_ASN1_SEQUENCE,
@@ -494,4 +494,4 @@ WebCertificateParseResult addCertificatesToKeychainFromData(const void *bytes, u
     }
 
     return result;
-}
\ No newline at end of file
+}

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list