SeComLib
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Macros Pages
randomizer_container.h
Go to the documentation of this file.
1 /*
2 SeComLib
3 Copyright 2012-2013 TU Delft, Information Security & Privacy Lab (http://isplab.tudelft.nl/)
4 
5 Contributors:
6 Inald Lagendijk (R.L.Lagendijk@TUDelft.nl)
7 Mihai Todor (todormihai@gmail.com)
8 Thijs Veugen (P.J.M.Veugen@tudelft.nl)
9 Zekeriya Erkin (z.erkin@tudelft.nl)
10 
11 Licensed under the Apache License, Version 2.0 (the "License");
12 you may not use this file except in compliance with the License.
13 You may obtain a copy of the License at
14 
15 http://www.apache.org/licenses/LICENSE-2.0
16 
17 Unless required by applicable law or agreed to in writing, software
18 distributed under the License is distributed on an "AS IS" BASIS,
19 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 See the License for the specific language governing permissions and
21 limitations under the License.
22 */
29 #ifndef RANDOMIZER_CONTAINER_HEADER_GUARD
30 #define RANDOMIZER_CONTAINER_HEADER_GUARD
31 
32 //include our headers
33 #include "utils/config.h"
34 #include "core/big_integer.h"
35 
36 namespace SeComLib {
37 namespace Core {
44  template <typename T_CryptoProvider, typename T_Parameters>
46  public:
48  typedef T_CryptoProvider CryptoProvider;
49 
51  typedef T_Parameters Parameters;
52 
54  typename T_CryptoProvider::Randomizer randomizer;
55 
57  RandomizerContainer (const T_CryptoProvider &cryptoProvider, const T_Parameters &parameters);
58  };
59 
60 }//namespace Core
61 }//namespace SeComLib
62 
63 //Separate the implementation from the declaration
64 #include "randomizer_container.hpp"
65 
66 #endif//RANDOMIZER_CONTAINER_HEADER_GUARD
RandomizerContainer(const T_CryptoProvider &cryptoProvider, const T_Parameters &parameters)
Constructor.
Defines BigInteger.
Implementation of struct RandomizerContainer.
Definition of class Config.
T_CryptoProvider CryptoProvider
Exposes the crypto provider type.
Stores precomputed random data.
T_Parameters Parameters
Exposes the parameters container type.
T_CryptoProvider::Randomizer randomizer