diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-01-09 14:49:35 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-01-09 14:49:35 +0700 |
commit | 92c5aa785014f45b0a974e18382a1c1dae9176f1 (patch) | |
tree | 510b5eb1d9f4ea94fd238d7967e8a269d00b7f8d /crypto/src/math/raw/Interleave.cs | |
parent | Add FromUnsignedByteArray methods (diff) | |
download | BouncyCastle.NET-ed25519-92c5aa785014f45b0a974e18382a1c1dae9176f1.tar.xz |
Make classes static
Diffstat (limited to 'crypto/src/math/raw/Interleave.cs')
-rw-r--r-- | crypto/src/math/raw/Interleave.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/math/raw/Interleave.cs b/crypto/src/math/raw/Interleave.cs index 196f7c9b5..17351d002 100644 --- a/crypto/src/math/raw/Interleave.cs +++ b/crypto/src/math/raw/Interleave.cs @@ -6,7 +6,7 @@ using System.Runtime.Intrinsics.X86; namespace Org.BouncyCastle.Math.Raw { - internal abstract class Interleave + internal static class Interleave { private const ulong M32 = 0x55555555UL; private const ulong M64 = 0x5555555555555555UL; |