summary refs log tree commit diff
path: root/crypto/test/src
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2022-07-06 12:53:23 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2022-07-06 12:53:23 +0700
commit3a2043c0e0907cb96bb58e168c98a30ee31786e3 (patch)
tree7b93fbfe4afb711cb900c116a71e040234ebc241 /crypto/test/src
parentUse static classes and 'using' aliases (diff)
downloadBouncyCastle.NET-ed25519-3a2043c0e0907cb96bb58e168c98a30ee31786e3.tar.xz
Fix namespace of sike code
Diffstat (limited to 'crypto/test/src')
-rw-r--r--crypto/test/src/pqc/crypto/test/SikeVectorTest.cs5
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;