1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-06 18:43:43 +00:00

Changed all C# control flow block statements to include space between keyword and open paren (#800)

This commit is contained in:
Chad Scharf
2020-03-28 09:16:28 -04:00
committed by GitHub
parent 6c00ac43fc
commit 3c18fd7636
225 changed files with 2406 additions and 2406 deletions

View File

@@ -36,7 +36,7 @@ namespace Bit.Core.Services
public Task<byte[]> Pbkdf2Async(byte[] password, byte[] salt, CryptoHashAlgorithm algorithm, int iterations)
{
if(algorithm != CryptoHashAlgorithm.Sha256 && algorithm != CryptoHashAlgorithm.Sha512)
if (algorithm != CryptoHashAlgorithm.Sha256 && algorithm != CryptoHashAlgorithm.Sha512)
{
throw new ArgumentException("Unsupported PBKDF2 algorithm.");
}
@@ -71,14 +71,14 @@ namespace Bit.Core.Services
var mac1 = hasher.GetValueAndReset();
hasher.Append(b);
var mac2 = hasher.GetValueAndReset();
if(mac1.Length != mac2.Length)
if (mac1.Length != mac2.Length)
{
return false;
}
for(int i = 0; i < mac2.Length; i++)
for (int i = 0; i < mac2.Length; i++)
{
if(mac1[i] != mac2[i])
if (mac1[i] != mac2[i])
{
return false;
}
@@ -126,7 +126,7 @@ namespace Bit.Core.Services
public Task<Tuple<byte[], byte[]>> RsaGenerateKeyPairAsync(int length)
{
if(length != 1024 && length != 2048 && length != 4096)
if (length != 1024 && length != 2048 && length != 4096)
{
throw new ArgumentException("Invalid key pair length.");
}
@@ -161,7 +161,7 @@ namespace Bit.Core.Services
private HashAlgorithm ToHashAlgorithm(CryptoHashAlgorithm algorithm)
{
switch(algorithm)
switch (algorithm)
{
case CryptoHashAlgorithm.Sha1:
return HashAlgorithm.Sha1;
@@ -178,7 +178,7 @@ namespace Bit.Core.Services
private MacAlgorithm ToMacAlgorithm(CryptoHashAlgorithm algorithm)
{
switch(algorithm)
switch (algorithm)
{
case CryptoHashAlgorithm.Sha1:
return MacAlgorithm.HmacSha1;
@@ -193,7 +193,7 @@ namespace Bit.Core.Services
private AsymmetricAlgorithm ToAsymmetricAlgorithm(CryptoHashAlgorithm algorithm)
{
switch(algorithm)
switch (algorithm)
{
case CryptoHashAlgorithm.Sha1:
return AsymmetricAlgorithm.RsaOaepSha1;