summary refs log tree commit diff
path: root/crypto
diff options
context:
space:
mode:
authorDavid Hook <dgh@cryptoworkshop.com>2022-09-14 06:59:58 +1000
committerDavid Hook <dgh@cryptoworkshop.com>2022-09-14 06:59:58 +1000
commita7efb067ef497d68e6ca8dcd14fdcca2db4ca0be (patch)
treefaf3e58805f8b6be6adcaf45a6b7356033627054 /crypto
parentfixed method exposure (diff)
downloadBouncyCastle.NET-ed25519-a7efb067ef497d68e6ca8dcd14fdcca2db4ca0be.tar.xz
added missing usage
Diffstat (limited to 'crypto')
-rw-r--r--crypto/src/pqc/crypto/crystals/dilithium/DilithiumEngine.cs3
-rw-r--r--crypto/src/pqc/crypto/crystals/dilithium/Packing.cs3
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
 {