EGCiphertext.hpp 415 B

12345678910111213141516
  1. #ifndef __EG_CIPHERTEXT_HPP
  2. #define __EG_CIPHERTEXT_HPP
  3. #include "Curvepoint.hpp"
  4. class EGCiphertext {
  5. public:
  6. Curvepoint mask;
  7. Curvepoint encryptedMessage;
  8. bool operator==(const EGCiphertext& other) const;
  9. friend std::ostream& operator<<(std::ostream& os, const EGCiphertext& output);
  10. friend std::istream& operator>>(std::istream& is, EGCiphertext& input);
  11. };
  12. #endif