Reformatted.

This commit is contained in:
2016-04-19 02:11:47 +01:00
parent 6a8499f8ed
commit f8bc81d4f5
149 changed files with 6983 additions and 6970 deletions

View File

@@ -92,7 +92,7 @@ namespace DiscImageChef.Checksums
_sha256Provider.TransformFinalBlock(new byte[0], 0, 0);
StringBuilder sha256Output = new StringBuilder();
for (int i = 0; i < _sha256Provider.Hash.Length; i++)
for(int i = 0; i < _sha256Provider.Hash.Length; i++)
{
sha256Output.Append(_sha256Provider.Hash[i].ToString("x2"));
}
@@ -121,7 +121,7 @@ namespace DiscImageChef.Checksums
hash = _sha256Provider.ComputeHash(fileStream);
StringBuilder sha256Output = new StringBuilder();
for (int i = 0; i < hash.Length; i++)
for(int i = 0; i < hash.Length; i++)
{
sha256Output.Append(hash[i].ToString("x2"));
}
@@ -140,7 +140,7 @@ namespace DiscImageChef.Checksums
hash = _sha256Provider.ComputeHash(data, 0, (int)len);
StringBuilder sha256Output = new StringBuilder();
for (int i = 0; i < hash.Length; i++)
for(int i = 0; i < hash.Length; i++)
{
sha256Output.Append(hash[i].ToString("x2"));
}