tfhe_libex
bit.hpp
[詳解]
1 
5 #ifndef BIT
6 #define BIT
7 #include "../keyset/keyset.hpp"
8 
12 class TFHEBit : private TFHEKeySet {
13  public:
14  LweSample* bit = nullptr;
15 
16  TFHEBit(LweSample* elm);
17 
18  TFHEBit(const TFHEBit& elm);
19 
20  TFHEBit();
21 
22  ~TFHEBit();
23 
24  TFHEBit& operator=(const TFHEBit& elm);
25 };
26 #endif
TFHEBit
単数のLweSample*をwrapするクラス.
Definition: bit.hpp:12
TFHEKeySet
TFHEの秘密鍵,クラウド鍵,パラメータをまとめて管理するwrapperクラス.
Definition: keyset.hpp:43