We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 620f044 commit 90c1114Copy full SHA for 90c1114
src/Otp.NET/Base32Encoding.cs
@@ -128,6 +128,5 @@ private static char ValueToChar(byte b)
128
129
throw new ArgumentException("Byte is not a value Base32 value.", "b");
130
}
131
-
132
133
src/Otp.NET/KeyGeneration.cs
@@ -41,7 +41,7 @@ public static class KeyGeneration
41
public static byte[] GenerateRandomKey(int length)
42
{
43
byte[] key = new byte[length];
44
- using(var rnd = System.Security.Cryptography.RandomNumberGenerator.Create())
+ using(var rnd = RandomNumberGenerator.Create())
45
46
rnd.GetBytes(key);
47
return key;
0 commit comments