diff options
author | David Hook <david.hook@keyfactor.com> | 2023-08-26 13:32:26 +1000 |
---|---|---|
committer | David Hook <david.hook@keyfactor.com> | 2023-08-26 13:32:26 +1000 |
commit | 9eef03f8578736ff48c8d72ddbc40907a20a40f0 (patch) | |
tree | 1584edf4893e739c1e3cc5fc80282317e26e6595 /crypto/test | |
parent | marked AES mode as obsolete (diff) | |
download | BouncyCastle.NET-ed25519-9eef03f8578736ff48c8d72ddbc40907a20a40f0.tar.xz |
marked sphincs+ robust as obsolete
Diffstat (limited to 'crypto/test')
-rw-r--r-- | crypto/test/src/pqc/crypto/test/SphincsPlusTest.cs | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/crypto/test/src/pqc/crypto/test/SphincsPlusTest.cs b/crypto/test/src/pqc/crypto/test/SphincsPlusTest.cs index 5a8e0810d..960c5d762 100644 --- a/crypto/test/src/pqc/crypto/test/SphincsPlusTest.cs +++ b/crypto/test/src/pqc/crypto/test/SphincsPlusTest.cs @@ -21,32 +21,6 @@ namespace Org.BouncyCastle.Pqc.Crypto.Tests [TestFixture] public class SphincsPlusTest { - private static readonly string[] TestVectorFilesRobustFast = - { - "sha2-128f-robust.rsp", - "sha2-192f-robust.rsp", - "sha2-256f-robust.rsp", - "shake-128f-robust.rsp", - "shake-192f-robust.rsp", - "shake-256f-robust.rsp", - "haraka-128f-robust.rsp", - "haraka-192f-robust.rsp", - "haraka-256f-robust.rsp", - }; - - private static readonly string[] TestVectorFilesRobustSlow = - { - "sha2-128s-robust.rsp", - "sha2-192s-robust.rsp", - "sha2-256s-robust.rsp", - "shake-128s-robust.rsp", - "shake-192s-robust.rsp", - "shake-256s-robust.rsp", - "haraka-128s-robust.rsp", - "haraka-192s-robust.rsp", - "haraka-256s-robust.rsp", - }; - private static readonly string[] TestVectorFilesSimpleFast = { "sha2-128f-simple.rsp", @@ -73,20 +47,6 @@ namespace Org.BouncyCastle.Pqc.Crypto.Tests "haraka-256s-simple.rsp", }; - [TestCaseSource(nameof(TestVectorFilesRobustFast))] - [Parallelizable(ParallelScope.All)] - public void TVRobustFast(string testVectorFile) - { - RunTestVectorFile(testVectorFile); - } - - [Explicit, TestCaseSource(nameof(TestVectorFilesRobustSlow))] - [Parallelizable(ParallelScope.All)] - public void TVRobustSlow(string testVectorFile) - { - RunTestVectorFile(testVectorFile); - } - [TestCaseSource(nameof(TestVectorFilesSimpleFast))] [Parallelizable(ParallelScope.All)] public void TVSimpleFast(string testVectorFile) |