Files
MP-SPDZ/GC/PostSacriSecret.h
Marcel Keller 0f656fa7b7 ARM support.
2021-04-19 21:28:22 +10:00

38 lines
495 B
C++

/*
* AbfllnowShare.h
*
*/
#ifndef GC_POSTSACRISECRET_H_
#define GC_POSTSACRISECRET_H_
#include "MaliciousRepSecret.h"
namespace GC
{
class PostSacriBin;
class PostSacriSecret : public MalRepSecretBase<PostSacriSecret>
{
typedef PostSacriSecret This;
typedef MalRepSecretBase<This> super;
public:
typedef PostSacriBin Protocol;
PostSacriSecret()
{
}
template<class T>
PostSacriSecret(const T& other) :
super(other)
{
}
};
}
#endif