summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Hook <dgh@cryptoworkshop.com>2022-07-22 14:42:35 +1000
committerDavid Hook <dgh@cryptoworkshop.com>2022-07-22 14:42:35 +1000
commit24e229d6daab42f0ca890454a0210a1122fe20be (patch)
tree1e509131bc4fed2b88cd75e84338714a5c7b73e7
parentinitial NTRU Prime (diff)
downloadBouncyCastle.NET-ed25519-24e229d6daab42f0ca890454a0210a1122fe20be.tar.xz
fixed exposure of engine class
-rw-r--r--crypto/src/pqc/crypto/ntrup/NtruPParameters.cs2
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