dechiffrementL2.hpp 395 B

12345678910111213
  1. #ifndef __DECHIFFREMENTL2_HPP
  2. #define __DECHIFFREMENTL2_HPP
  3. #include "BitEvalL2.hpp"
  4. #include "keygen.hpp"
  5. #include "pairing.hpp"
  6. void dechiffrementL2(F2& bit_dechiffre, BitEvalL2 bit_chiffre, PrivateKey private_key);
  7. void dechiffrementL2(F2& bit_dechiffre, Quadripoint quadripoint, PrivateKey private_key); // routine pour les évalués de niveau 3 et 4
  8. #endif /* __DECHIFFREMENTL2_HPP */