diff options
author | David Hook <dgh@cryptoworkshop.com> | 2022-09-14 06:59:58 +1000 |
---|---|---|
committer | David Hook <dgh@cryptoworkshop.com> | 2022-09-14 06:59:58 +1000 |
commit | a7efb067ef497d68e6ca8dcd14fdcca2db4ca0be (patch) | |
tree | faf3e58805f8b6be6adcaf45a6b7356033627054 /crypto/src | |
parent | fixed method exposure (diff) | |
download | BouncyCastle.NET-ed25519-a7efb067ef497d68e6ca8dcd14fdcca2db4ca0be.tar.xz |
added missing usage
Diffstat (limited to 'crypto/src')
-rw-r--r-- | crypto/src/pqc/crypto/crystals/dilithium/DilithiumEngine.cs | 3 | ||||
-rw-r--r-- | crypto/src/pqc/crypto/crystals/dilithium/Packing.cs | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/crypto/src/pqc/crypto/crystals/dilithium/DilithiumEngine.cs b/crypto/src/pqc/crypto/crystals/dilithium/DilithiumEngine.cs index 2bf54008b..9e41c8684 100644 --- a/crypto/src/pqc/crypto/crystals/dilithium/DilithiumEngine.cs +++ b/crypto/src/pqc/crypto/crystals/dilithium/DilithiumEngine.cs @@ -1,4 +1,5 @@ -using Org.BouncyCastle.Crypto.Digests; +using System; +using Org.BouncyCastle.Crypto.Digests; using Org.BouncyCastle.Security; using Org.BouncyCastle.Utilities; diff --git a/crypto/src/pqc/crypto/crystals/dilithium/Packing.cs b/crypto/src/pqc/crypto/crystals/dilithium/Packing.cs index 25f2beb8a..b849fb228 100644 --- a/crypto/src/pqc/crypto/crystals/dilithium/Packing.cs +++ b/crypto/src/pqc/crypto/crystals/dilithium/Packing.cs @@ -1,4 +1,5 @@ -using Org.BouncyCastle.Utilities; +using System; +using Org.BouncyCastle.Utilities; namespace Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium { |