summary refs log tree commit diff
path: root/crypto
diff options
context:
space:
mode:
authorDavid Hook <dgh@cryptoworkshop.com>2022-09-14 06:54:06 +1000
committerDavid Hook <dgh@cryptoworkshop.com>2022-09-14 06:54:06 +1000
commit021c03286d9d979a3d7df94252703a50fcdc9cd6 (patch)
tree90ccd6c16423e73a71097c7504056709c5c1b793 /crypto
parentadded missing usage (diff)
downloadBouncyCastle.NET-ed25519-021c03286d9d979a3d7df94252703a50fcdc9cd6.tar.xz
fixed method exposure
Diffstat (limited to 'crypto')
-rw-r--r--crypto/src/pqc/crypto/crystals/dilithium/DilithiumParameters.cs2
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); }