Skip to content

Commit 90c1114

Browse files
committed
formatting fixes
1 parent 620f044 commit 90c1114

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/Otp.NET/Base32Encoding.cs

-1
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,5 @@ private static char ValueToChar(byte b)
128128

129129
throw new ArgumentException("Byte is not a value Base32 value.", "b");
130130
}
131-
132131
}
133132
}

src/Otp.NET/KeyGeneration.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public static class KeyGeneration
4141
public static byte[] GenerateRandomKey(int length)
4242
{
4343
byte[] key = new byte[length];
44-
using(var rnd = System.Security.Cryptography.RandomNumberGenerator.Create())
44+
using(var rnd = RandomNumberGenerator.Create())
4545
{
4646
rnd.GetBytes(key);
4747
return key;

0 commit comments

Comments
 (0)