EGCiphertext.hpp 248 B

1234567891011121314
  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. };
  10. #endif