summary refs log tree commit diff
path: root/crypto/src/pqc/crypto/ntru/owcpa/OwcpaDecryptResult.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/pqc/crypto/ntru/owcpa/OwcpaDecryptResult.cs')
-rw-r--r--crypto/src/pqc/crypto/ntru/owcpa/OwcpaDecryptResult.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/crypto/src/pqc/crypto/ntru/owcpa/OwcpaDecryptResult.cs b/crypto/src/pqc/crypto/ntru/owcpa/OwcpaDecryptResult.cs
new file mode 100644
index 000000000..53f8b4219
--- /dev/null
+++ b/crypto/src/pqc/crypto/ntru/owcpa/OwcpaDecryptResult.cs
@@ -0,0 +1,14 @@
+namespace Org.BouncyCastle.Pqc.Crypto.Ntru.Owcpa
+{
+    internal class OwcpaDecryptResult
+    {
+        internal byte[] Rm;
+        internal int Fail;
+
+        internal OwcpaDecryptResult(byte[] rm, int fail)
+        {
+            Rm = rm;
+            Fail = fail;
+        }
+    }
+}
\ No newline at end of file