EGCiphertext.cpp 173 B

123456
  1. #include "EGCiphertext.hpp"
  2. bool EGCiphertext::operator==(const EGCiphertext& other) const
  3. {
  4. return mask == other.mask && encryptedMessage == other.encryptedMessage;
  5. }