2008-07-03 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
authorAndreas N <andreas@mono-cvs.ximian.com>
Thu, 3 Jul 2008 08:15:43 +0000 (08:15 -0000)
committerAndreas N <andreas@mono-cvs.ximian.com>
Thu, 3 Jul 2008 08:15:43 +0000 (08:15 -0000)
* SHA1CryptoServiceProvider.cs: Fix parameter names

svn path=/trunk/mcs/; revision=107133

mcs/class/corlib/System.Security.Cryptography/ChangeLog
mcs/class/corlib/System.Security.Cryptography/SHA1CryptoServiceProvider.cs

index 9bf83a9f7eeff5da5627f3418a9eb9da00ba4568..70ab123c7ac2ad7798369a0c5172a799c51f62cc 100644 (file)
@@ -1,3 +1,7 @@
+2008-07-03  Andreas Nahr  <ClassDevelopment@A-SoftTech.com>
+
+       * SHA1CryptoServiceProvider.cs: Fix parameter names
+
 2008-07-03  Andreas Nahr  <ClassDevelopment@A-SoftTech.com>
 
        * SHA512Managed.cs:
 2008-07-03  Andreas Nahr  <ClassDevelopment@A-SoftTech.com>
 
        * SHA512Managed.cs:
index 5e69f3ab9866276680a3411bae1bfb6c2d4ce859..7a96e16586d99ada0ca54c71e7253a73e21be7be 100644 (file)
@@ -340,10 +340,10 @@ namespace System.Security.Cryptography {
                        base.Dispose (disposing);
                }
 
                        base.Dispose (disposing);
                }
 
-               protected override void HashCore (byte[] rgb, int start, int size) 
+               protected override void HashCore (byte[] rgb, int ibStart, int cbSize) 
                {
                        State = 1;
                {
                        State = 1;
-                       sha.HashCore (rgb, start, size);
+                       sha.HashCore (rgb, ibStart, cbSize);
                }
 
                protected override byte[] HashFinal () 
                }
 
                protected override byte[] HashFinal ()