diff options
author | David Hook <dgh@cryptoworkshop.com> | 2022-09-14 06:54:06 +1000 |
---|---|---|
committer | David Hook <dgh@cryptoworkshop.com> | 2022-09-14 06:54:06 +1000 |
commit | 021c03286d9d979a3d7df94252703a50fcdc9cd6 (patch) | |
tree | 90ccd6c16423e73a71097c7504056709c5c1b793 | |
parent | added missing usage (diff) | |
download | BouncyCastle.NET-ed25519-021c03286d9d979a3d7df94252703a50fcdc9cd6.tar.xz |
fixed method exposure
-rw-r--r-- | crypto/src/pqc/crypto/crystals/dilithium/DilithiumParameters.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/pqc/crypto/crystals/dilithium/DilithiumParameters.cs b/crypto/src/pqc/crypto/crystals/dilithium/DilithiumParameters.cs index b6634337a..a5dd2e338 100644 --- a/crypto/src/pqc/crypto/crystals/dilithium/DilithiumParameters.cs +++ b/crypto/src/pqc/crypto/crystals/dilithium/DilithiumParameters.cs @@ -18,7 +18,7 @@ namespace Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium k = param; } - public DilithiumEngine GetEngine(SecureRandom Random) + internal DilithiumEngine GetEngine(SecureRandom Random) { return new DilithiumEngine(k, Random); } |