diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-10-20 22:50:19 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-10-20 22:50:19 +0700 |
commit | e6bfddbc04a51c803ac43e96a8d2361a4cf46b60 (patch) | |
tree | c2f3ec67e97ec64e020bc05014c909f0a84e7135 /crypto/test | |
parent | Initial import of HQC (diff) | |
download | BouncyCastle.NET-ed25519-e6bfddbc04a51c803ac43e96a8d2361a4cf46b60.tar.xz |
Refactoring in Pqc.Crypto.Hqc (performance)
Diffstat (limited to 'crypto/test')
-rw-r--r-- | crypto/test/src/pqc/crypto/test/HqcVectorTest.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/test/src/pqc/crypto/test/HqcVectorTest.cs b/crypto/test/src/pqc/crypto/test/HqcVectorTest.cs index a881b73c2..108508f9d 100644 --- a/crypto/test/src/pqc/crypto/test/HqcVectorTest.cs +++ b/crypto/test/src/pqc/crypto/test/HqcVectorTest.cs @@ -47,7 +47,7 @@ namespace Org.BouncyCastle.Pqc.Crypto.Tests private static void RunTestVector(string name, IDictionary<string, string> buf) { string count = buf["count"]; - byte[] seed = Hex.Decode(buf["seed"]); // seed for Cmce secure random + byte[] seed = Hex.Decode(buf["seed"]); // seed for SecureRandom byte[] pk = Hex.Decode(buf["pk"]); // public key byte[] sk = Hex.Decode(buf["sk"]); // private key byte[] ct = Hex.Decode(buf["ct"]); // ciphertext |