1 /*
2 * Copyright (c) by CryptoLab inc.
3 * This program is licensed under a
4 * Creative Commons Attribution-NonCommercial 3.0 Unported License.
5 * You should have received a copy of the license along with this
6 * work.  If not, see <http://creativecommons.org/licenses/by-nc/3.0/>.
7 */
8 #ifndef HEAAN_KEY_H_
9 #define HEAAN_KEY_H_
10 
11 #include <NTL/ZZ.h>
12 #include "Params.h"
13 
14 using namespace NTL;
15 
16 class Key {
17 public:
18 
19 	uint64_t* rax = new uint64_t[Nnprimes]();
20 	uint64_t* rbx = new uint64_t[Nnprimes]();
21 
22 	Key();
23 
24 	virtual ~Key();
25 };
26 
27 #endif
28