EGCiphertext.hpp 147 B

123456789
  1. #ifndef __EG_CIPHERTEXT_HPP
  2. #define __EG_CIPHERTEXT_HPP
  3. struct EGCiphertext {
  4. Curvepoint mask;
  5. Curvepoint encryptedMessage;
  6. };
  7. #endif