diff options
author | David Hook <dgh@cryptoworkshop.com> | 2022-07-22 14:42:35 +1000 |
---|---|---|
committer | David Hook <dgh@cryptoworkshop.com> | 2022-07-22 14:42:35 +1000 |
commit | 24e229d6daab42f0ca890454a0210a1122fe20be (patch) | |
tree | 1e509131bc4fed2b88cd75e84338714a5c7b73e7 /crypto/src/pqc | |
parent | initial NTRU Prime (diff) | |
download | BouncyCastle.NET-ed25519-24e229d6daab42f0ca890454a0210a1122fe20be.tar.xz |
fixed exposure of engine class
Diffstat (limited to 'crypto/src/pqc')
-rw-r--r-- | crypto/src/pqc/crypto/ntrup/NtruPParameters.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/pqc/crypto/ntrup/NtruPParameters.cs b/crypto/src/pqc/crypto/ntrup/NtruPParameters.cs index cba3b9d77..82c7c8e13 100644 --- a/crypto/src/pqc/crypto/ntrup/NtruPParameters.cs +++ b/crypto/src/pqc/crypto/ntrup/NtruPParameters.cs @@ -66,7 +66,7 @@ namespace Org.BouncyCastle.pqc.crypto.NtruP public int Q => q; - public NtruPEngine PEngine => _pEngine; + internal NtruPEngine PEngine => _pEngine; } } \ No newline at end of file |