arrayofciphers.hpp
Go to the documentation of this file.
1 
12 #ifndef _ARRAYOFCIPHERS_H_
13 #define _ARRAYOFCIPHERS_H_
14 
15 #include "../arithm/arithm.hpp"
16 #include "../verifierutils/verifierutils.hpp"
17 
18 
19 namespace elGamal {
20 
21 // forward declaration
22 class CipherGroup;
23 class CipherText;
24 
35 {
36 private:
42 
48 public:
49 
59 
64 
70 
75 
80 
87  CipherText getCipherText(unsigned int index);
88 
92  unsigned int size();
93 
94 };
95 
96 } // closing namespace
97 
98 #endif