diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-07-24 21:53:16 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-07-24 21:53:16 +0700 |
commit | c99f8778a0839bdc353a67170545b45ace390b18 (patch) | |
tree | 06a1903fd5e00ed2b8deb602b752b098a546a7aa /crypto | |
parent | GCM perf. opts. (diff) | |
download | BouncyCastle.NET-ed25519-c99f8778a0839bdc353a67170545b45ace390b18.tar.xz |
More precise preprocessor directives
Diffstat (limited to '')
-rw-r--r-- | crypto/src/pqc/crypto/sike/Fpx.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/src/pqc/crypto/sike/Fpx.cs b/crypto/src/pqc/crypto/sike/Fpx.cs index c2a1f1972..d2ec32f89 100644 --- a/crypto/src/pqc/crypto/sike/Fpx.cs +++ b/crypto/src/pqc/crypto/sike/Fpx.cs @@ -1,6 +1,6 @@ using System; using System.Diagnostics; -#if NETSTANDARD1_0_OR_GREATER || NET5_0_OR_GREATER +#if NETSTANDARD1_0_OR_GREATER || NETCOREAPP1_0_OR_GREATER using System.Runtime.CompilerServices; #endif @@ -137,7 +137,7 @@ namespace Org.BouncyCastle.Pqc.Crypto.Sike } // Is x < y? -#if NETSTANDARD1_0_OR_GREATER || NET5_0_OR_GREATER +#if NETSTANDARD1_0_OR_GREATER || NETCOREAPP1_0_OR_GREATER [MethodImpl(MethodImplOptions.AggressiveInlining)] #endif private ulong is_digit_lessthan_ct(ulong x, ulong y) @@ -146,7 +146,7 @@ namespace Org.BouncyCastle.Pqc.Crypto.Sike } // Is x != 0? -#if NETSTANDARD1_0_OR_GREATER || NET5_0_OR_GREATER +#if NETSTANDARD1_0_OR_GREATER || NETCOREAPP1_0_OR_GREATER [MethodImpl(MethodImplOptions.AggressiveInlining)] #endif private ulong is_digit_nonzero_ct(ulong x) @@ -154,7 +154,7 @@ namespace Org.BouncyCastle.Pqc.Crypto.Sike return ((x | (0-x)) >> (int)(Internal.RADIX -1)); } // Is x = 0? -#if NETSTANDARD1_0_OR_GREATER || NET5_0_OR_GREATER +#if NETSTANDARD1_0_OR_GREATER || NETCOREAPP1_0_OR_GREATER [MethodImpl(MethodImplOptions.AggressiveInlining)] #endif private ulong is_digit_zero_ct(ulong x) |