Secure shuffling.

This commit is contained in:
Marcel Keller
2022-05-27 14:19:33 +02:00
parent 2dad77ba32
commit 5ab8c702dd
108 changed files with 2227 additions and 542 deletions

View File

@@ -50,11 +50,6 @@ public:
return "no";
}
static string type_short()
{
return "no";
}
static DataFieldType field_type()
{
throw not_implemented();
@@ -66,7 +61,7 @@ public:
static void fail()
{
throw runtime_error("VM does not support binary circuits");
throw runtime_error("functionality not available");
}
NoValue() {}
@@ -143,6 +138,11 @@ public:
return 0;
}
static int length()
{
return 0;
}
static void fail()
{
NoValue::fail();