#include "components/sync/engine/nigori/cryptographer.h"
#include "base/check.h"
#include "base/logging.h"
#include "components/sync/protocol/encryption.pb.h"
namespace syncer {
Cryptographer::Cryptographer() = default;
Cryptographer::~Cryptographer() = default;
bool Cryptographer::Encrypt(const ::google::protobuf::MessageLite& message,
sync_pb::EncryptedData* encrypted) const { … }
bool Cryptographer::Decrypt(const sync_pb::EncryptedData& encrypted,
::google::protobuf::MessageLite* message) const { … }
}