mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-12 15:08:06 -05:00
21 lines
310 B
C++
21 lines
310 B
C++
/*
|
|
* ShareInterface.cpp
|
|
*
|
|
*/
|
|
|
|
#include "ShareInterface.h"
|
|
#include "GC/NoShare.h"
|
|
|
|
const int ShareInterface::default_length;
|
|
|
|
const false_type ShareInterface::triple_matmul;
|
|
|
|
GC::NoValue ShareInterface::get_mac_key()
|
|
{
|
|
throw runtime_error("no MAC");
|
|
}
|
|
|
|
void ShareInterface::set_mac_key(GC::NoValue)
|
|
{
|
|
}
|