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
_sha384Provider.TransformFinalBlock(new byte[0], 0, 0);
StringBuilder sha384Output = new StringBuilder();
for (int i = 0; i < _sha384Provider.Hash.Length; i++)
for(int i = 0; i < _sha384Provider.Hash.Length; i++)
{
sha384Output.Append(_sha384Provider.Hash[i].ToString("x2"));
}
@@ -121,7 +121,7 @@ namespace DiscImageChef.Checksums
hash = _sha384Provider.ComputeHash(fileStream);
StringBuilder sha384Output = new StringBuilder();
for (int i = 0; i < hash.Length; i++)
for(int i = 0; i < hash.Length; i++)
{
sha384Output.Append(hash[i].ToString("x2"));
}
@@ -140,7 +140,7 @@ namespace DiscImageChef.Checksums
hash = _sha384Provider.ComputeHash(data, 0, (int)len);
StringBuilder sha384Output = new StringBuilder();
for (int i = 0; i < hash.Length; i++)
for(int i = 0; i < hash.Length; i++)
{
sha384Output.Append(hash[i].ToString("x2"));
}