Author: spouliot
Date: 2005-04-12 14:27:01 -0400 (Tue, 12 Apr 2005)
New Revision: 42859

Modified:
   trunk/mcs/class/Mono.Security/Mono.Security.Protocol.Tls/ChangeLog
   trunk/mcs/class/Mono.Security/Mono.Security.Protocol.Tls/SslHandshakeHash.cs
Log:
* SslHandshakeHash.cs: Changed SslHash to MD5SHA1. Fix #71696.

Modified: trunk/mcs/class/Mono.Security/Mono.Security.Protocol.Tls/ChangeLog
===================================================================
--- trunk/mcs/class/Mono.Security/Mono.Security.Protocol.Tls/ChangeLog  
2005-04-12 18:24:45 UTC (rev 42858)
+++ trunk/mcs/class/Mono.Security/Mono.Security.Protocol.Tls/ChangeLog  
2005-04-12 18:27:01 UTC (rev 42859)
@@ -1,3 +1,7 @@
+2005-04-12  Sebastien Pouliot  <[EMAIL PROTECTED]>
+
+       * SslHandshakeHash.cs: Changed "SslHash" to "MD5SHA1". Fix #71696.
+
 2005-04-10  Sebastien Pouliot  <[EMAIL PROTECTED]>
 
        * HttpsClientStream.cs: Added a TrustFailure property so a 

Modified: 
trunk/mcs/class/Mono.Security/Mono.Security.Protocol.Tls/SslHandshakeHash.cs
===================================================================
--- 
trunk/mcs/class/Mono.Security/Mono.Security.Protocol.Tls/SslHandshakeHash.cs    
    2005-04-12 18:24:45 UTC (rev 42858)
+++ 
trunk/mcs/class/Mono.Security/Mono.Security.Protocol.Tls/SslHandshakeHash.cs    
    2005-04-12 18:27:01 UTC (rev 42859)
@@ -129,7 +129,7 @@
                        }
 
                        RSASslSignatureFormatter f = new 
RSASslSignatureFormatter(rsa);
-                       f.SetHashAlgorithm("SslHash");
+                       f.SetHashAlgorithm("MD5SHA1");
 
                        return f.CreateSignature(this.Hash);
                }
@@ -146,7 +146,7 @@
                        }
 
                        RSASslSignatureDeformatter d = new 
RSASslSignatureDeformatter(rsa);
-                       d.SetHashAlgorithm("SslHash");
+                       d.SetHashAlgorithm("MD5SHA1");
 
                        return d.VerifySignature(this.Hash, rgbSignature);
                }

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to