From 92c5aa785014f45b0a974e18382a1c1dae9176f1 Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Mon, 9 Jan 2023 14:49:35 +0700 Subject: Make classes static --- crypto/src/math/raw/Interleave.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/src/math/raw/Interleave.cs') 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; -- cgit 1.4.1