We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c071bec commit 70e14dbCopy full SHA for 70e14db
1 file changed
Crypto.cs
@@ -3,8 +3,8 @@
3
4
using System.Security.Cryptography;
5
6
-using Org.BouncyCastle.Crypto.Engines;
7
using Org.BouncyCastle.Crypto.Modes;
+using Org.BouncyCastle.Crypto.Engines;
8
using Org.BouncyCastle.Crypto.Parameters;
9
10
namespace DOOMSaveManager
@@ -59,7 +59,7 @@ public static byte[] CalcProfileHash(byte[] data) {
59
return FarmHash_Hash32(pfData);
60
}
61
62
- public static uint Mur(uint a, uint h) {
+ private static uint Mur(uint a, uint h) {
63
// Taken from https://github.com/google/farmhash/blob/master/src/farmhash.cc
64
65
a *= C1;
0 commit comments