123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- #pragma warning disable
- using System.Diagnostics;
- #if NETSTANDARD1_0_OR_GREATER || NETCOREAPP1_0_OR_GREATER || UNITY_2021_2_OR_NEWER
- using System.Runtime.CompilerServices;
- #endif
- namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Math.Raw
- {
- internal static class Bits
- {
- #if NETSTANDARD1_0_OR_GREATER || NETCOREAPP1_0_OR_GREATER || UNITY_2021_2_OR_NEWER
- [MethodImpl(MethodImplOptions.AggressiveInlining)]
- #endif
- internal static uint BitPermuteStep(uint x, uint m, int s)
- {
- Debug.Assert((m & (m << s)) == 0U);
- Debug.Assert((m << s) >> s == m);
- uint t = (x ^ (x >> s)) & m;
- return t ^ (t << s) ^ x;
- }
- #if NETSTANDARD1_0_OR_GREATER || NETCOREAPP1_0_OR_GREATER || UNITY_2021_2_OR_NEWER
- [MethodImpl(MethodImplOptions.AggressiveInlining)]
- #endif
- internal static ulong BitPermuteStep(ulong x, ulong m, int s)
- {
- Debug.Assert((m & (m << s)) == 0UL);
- Debug.Assert((m << s) >> s == m);
- ulong t = (x ^ (x >> s)) & m;
- return t ^ (t << s) ^ x;
- }
- #if NETSTANDARD1_0_OR_GREATER || NETCOREAPP1_0_OR_GREATER || UNITY_2021_2_OR_NEWER
- [MethodImpl(MethodImplOptions.AggressiveInlining)]
- #endif
- internal static void BitPermuteStep2(ref uint hi, ref uint lo, uint m, int s)
- {
- #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP1_1_OR_GREATER || UNITY_2021_2_OR_NEWER
- //Debug.Assert(!Unsafe.AreSame(ref hi, ref lo) || (m & (m << s)) == 0U);
- #endif
- Debug.Assert((m << s) >> s == m);
- uint t = ((lo >> s) ^ hi) & m;
- lo ^= t << s;
- hi ^= t;
- }
- #if NETSTANDARD1_0_OR_GREATER || NETCOREAPP1_0_OR_GREATER || UNITY_2021_2_OR_NEWER
- [MethodImpl(MethodImplOptions.AggressiveInlining)]
- #endif
- internal static void BitPermuteStep2(ref ulong hi, ref ulong lo, ulong m, int s)
- {
- #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP1_1_OR_GREATER || UNITY_2021_2_OR_NEWER
- //Debug.Assert(!Unsafe.AreSame(ref hi, ref lo) || (m & (m << s)) == 0UL);
- #endif
- Debug.Assert((m << s) >> s == m);
- ulong t = ((lo >> s) ^ hi) & m;
- lo ^= t << s;
- hi ^= t;
- }
- #if NETSTANDARD1_0_OR_GREATER || NETCOREAPP1_0_OR_GREATER || UNITY_2021_2_OR_NEWER
- [MethodImpl(MethodImplOptions.AggressiveInlining)]
- #endif
- internal static uint BitPermuteStepSimple(uint x, uint m, int s)
- {
- Debug.Assert((m & (m << s)) == 0U);
- Debug.Assert((m << s) >> s == m);
- return ((x & m) << s) | ((x >> s) & m);
- }
- #if NETSTANDARD1_0_OR_GREATER || NETCOREAPP1_0_OR_GREATER || UNITY_2021_2_OR_NEWER
- [MethodImpl(MethodImplOptions.AggressiveInlining)]
- #endif
- internal static ulong BitPermuteStepSimple(ulong x, ulong m, int s)
- {
- Debug.Assert((m & (m << s)) == 0UL);
- Debug.Assert((m << s) >> s == m);
- return ((x & m) << s) | ((x >> s) & m);
- }
- }
- }
- #pragma warning restore
- #endif
|