summary refs log tree commit diff
path: root/crypto/src/pqc/crypto/picnic/View.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/pqc/crypto/picnic/View.cs')
-rw-r--r--crypto/src/pqc/crypto/picnic/View.cs8
1 files changed, 3 insertions, 5 deletions
diff --git a/crypto/src/pqc/crypto/picnic/View.cs b/crypto/src/pqc/crypto/picnic/View.cs
index d72afa9d4..cac47631a 100644
--- a/crypto/src/pqc/crypto/picnic/View.cs
+++ b/crypto/src/pqc/crypto/picnic/View.cs
@@ -1,18 +1,16 @@
-using Org.BouncyCastle.Pqc.Crypto.Picnic;
-
 namespace Org.BouncyCastle.Pqc.Crypto.Picnic
 {
-    public class View
+    internal class View
     {
         internal uint[] inputShare;
         internal byte[] communicatedBits;
         internal uint[] outputShare;
 
-        public View(PicnicEngine engine)
+        internal View(PicnicEngine engine)
         {
             inputShare = new uint[engine.stateSizeBytes];
             communicatedBits = new byte[engine.andSizeBytes];
             outputShare = new uint[engine.stateSizeBytes];
         }
     }
-}
\ No newline at end of file
+}