diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-07-06 12:53:23 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-07-06 12:53:23 +0700 |
commit | 3a2043c0e0907cb96bb58e168c98a30ee31786e3 (patch) | |
tree | 7b93fbfe4afb711cb900c116a71e040234ebc241 /crypto/test | |
parent | Use static classes and 'using' aliases (diff) | |
download | BouncyCastle.NET-ed25519-3a2043c0e0907cb96bb58e168c98a30ee31786e3.tar.xz |
Fix namespace of sike code
Diffstat (limited to 'crypto/test')
-rw-r--r-- | crypto/test/src/pqc/crypto/test/SikeVectorTest.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/test/src/pqc/crypto/test/SikeVectorTest.cs b/crypto/test/src/pqc/crypto/test/SikeVectorTest.cs index 29305149d..af8187a2d 100644 --- a/crypto/test/src/pqc/crypto/test/SikeVectorTest.cs +++ b/crypto/test/src/pqc/crypto/test/SikeVectorTest.cs @@ -1,10 +1,11 @@ using System; using System.Collections.Generic; using System.IO; + using NUnit.Framework; + using Org.BouncyCastle.Crypto; -using Org.Bouncycastle.Pqc.Crypto.Sike; -using Org.BouncyCastle.Pqc.Crypto.Utilities; +using Org.BouncyCastle.Pqc.Crypto.Sike; using Org.BouncyCastle.Utilities; using Org.BouncyCastle.Utilities.Encoders; using Org.BouncyCastle.Utilities.Test; |