Reformatted.

This commit is contained in:
2016-04-19 02:11:47 +01:00
parent 690e35e931
commit 344a45b3fa
14 changed files with 299 additions and 299 deletions

View File

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