danicoin/src/WalletLegacy/KeysStorage.cpp

29 lines
839 B
C++
Raw Normal View History

// Copyright (c) 2011-2016 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2014-06-25 17:21:42 +00:00
#include "KeysStorage.h"
2014-06-25 17:21:42 +00:00
2015-07-30 15:22:07 +00:00
#include "WalletLegacy/WalletLegacySerialization.h"
#include "Serialization/ISerializer.h"
#include "Serialization/SerializationOverloads.h"
#include "CryptoNoteCore/CryptoNoteSerialization.h"
2014-06-25 17:21:42 +00:00
2015-05-27 12:08:46 +00:00
namespace CryptoNote {
2014-06-25 17:21:42 +00:00
void KeysStorage::serialize(ISerializer& serializer, const std::string& name) {
serializer.beginObject(name);
2014-06-25 17:21:42 +00:00
serializer(creationTimestamp, "creation_timestamp");
2014-06-25 17:21:42 +00:00
serializer(spendPublicKey, "spend_public_key");
serializer(spendSecretKey, "spend_secret_key");
2014-06-25 17:21:42 +00:00
serializer(viewPublicKey, "view_public_key");
serializer(viewSecretKey, "view_secret_key");
serializer.endObject();
}
2014-06-25 17:21:42 +00:00
}