postcomputation.hpp 412 B

123456789101112131415161718
  1. #ifndef __POSTCOMPUTATION_HPP
  2. #define __POSTCOMPUTATION_HPP
  3. #include <limits.h> /* for CHAR_BIT */
  4. #include "typedef.h"
  5. #include <iostream>
  6. #include "zout.hpp"
  7. #include <typeinfo>
  8. #include <cxxabi.h>
  9. #include "BitEvalL3.hpp"
  10. #include "dechiffrementL3.hpp"
  11. #include "PrivateKey.hpp"
  12. void postcomputation(char& rop, char symbole, BitEvalL3 evalue, PrivateKey private_key);
  13. #endif /* __POSTCOMPUTATION_HPP */