diff options
author | Peter Dettman <peter.dettman@gmail.com> | 2022-10-17 17:45:51 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@gmail.com> | 2022-10-17 17:45:51 +0700 |
commit | 1a1a6a635dc952520d6b90f411554b7d44e32954 (patch) | |
tree | f067d3c849fc1e84b40a9364146fb7f231f19906 /crypto/src/pqc | |
parent | updated public key encoding to latest version of draft RFC (diff) | |
download | BouncyCastle.NET-ed25519-1a1a6a635dc952520d6b90f411554b7d44e32954.tar.xz |
System.Linq cleanup
Diffstat (limited to 'crypto/src/pqc')
-rw-r--r-- | crypto/src/pqc/crypto/crystals/dilithium/PolyVecL.cs | 8 | ||||
-rw-r--r-- | crypto/src/pqc/crypto/crystals/dilithium/PolyVecMatrix.cs | 8 | ||||
-rw-r--r-- | crypto/src/pqc/crypto/falcon/FalconSmallPrimes.cs | 5 |
3 files changed, 2 insertions, 19 deletions
diff --git a/crypto/src/pqc/crypto/crystals/dilithium/PolyVecL.cs b/crypto/src/pqc/crypto/crystals/dilithium/PolyVecL.cs index 75309b374..58c286768 100644 --- a/crypto/src/pqc/crypto/crystals/dilithium/PolyVecL.cs +++ b/crypto/src/pqc/crypto/crystals/dilithium/PolyVecL.cs @@ -1,10 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium +namespace Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium { internal class PolyVecL { diff --git a/crypto/src/pqc/crypto/crystals/dilithium/PolyVecMatrix.cs b/crypto/src/pqc/crypto/crystals/dilithium/PolyVecMatrix.cs index cb41889b9..fa1af0560 100644 --- a/crypto/src/pqc/crypto/crystals/dilithium/PolyVecMatrix.cs +++ b/crypto/src/pqc/crypto/crystals/dilithium/PolyVecMatrix.cs @@ -1,10 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium +namespace Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium { internal class PolyVecMatrix { diff --git a/crypto/src/pqc/crypto/falcon/FalconSmallPrimes.cs b/crypto/src/pqc/crypto/falcon/FalconSmallPrimes.cs index dcefa7f05..8e11990bc 100644 --- a/crypto/src/pqc/crypto/falcon/FalconSmallPrimes.cs +++ b/crypto/src/pqc/crypto/falcon/FalconSmallPrimes.cs @@ -1,8 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - namespace Org.BouncyCastle.Pqc.Crypto.Falcon { class FalconSmallPrimes |