2014-03-03 17:07:58 -05:00
|
|
|
// Copyright (c) 2012-2013 The Cryptonote developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "cryptonote_core/cryptonote_basic.h"
|
|
|
|
#include "crypto/crypto.h"
|
|
|
|
#include "serialization/keyvalue_serialization.h"
|
|
|
|
|
|
|
|
namespace cryptonote
|
|
|
|
{
|
|
|
|
|
|
|
|
struct account_keys
|
|
|
|
{
|
|
|
|
account_public_address m_account_address;
|
|
|
|
crypto::secret_key m_spend_secret_key;
|
|
|
|
crypto::secret_key m_view_secret_key;
|
|
|
|
|
|
|
|
BEGIN_KV_SERIALIZE_MAP()
|
|
|
|
KV_SERIALIZE(m_account_address)
|
|
|
|
KV_SERIALIZE_VAL_POD_AS_BLOB_FORCE(m_spend_secret_key)
|
|
|
|
KV_SERIALIZE_VAL_POD_AS_BLOB_FORCE(m_view_secret_key)
|
|
|
|
END_KV_SERIALIZE_MAP()
|
|
|
|
};
|
|
|
|
|
|
|
|
/************************************************************************/
|
|
|
|
/* */
|
|
|
|
/************************************************************************/
|
|
|
|
class account_base
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
account_base();
|
2014-06-08 20:04:32 -04:00
|
|
|
crypto::secret_key generate(const crypto::secret_key& recovery_key = crypto::secret_key(), bool recover = false, bool two_random = false);
|
2014-03-03 17:07:58 -05:00
|
|
|
const account_keys& get_keys() const;
|
|
|
|
std::string get_public_address_str();
|
|
|
|
|
|
|
|
uint64_t get_createtime() const { return m_creation_timestamp; }
|
|
|
|
void set_createtime(uint64_t val) { m_creation_timestamp = val; }
|
|
|
|
|
|
|
|
bool load(const std::string& file_path);
|
|
|
|
bool store(const std::string& file_path);
|
|
|
|
|
|
|
|
template <class t_archive>
|
|
|
|
inline void serialize(t_archive &a, const unsigned int /*ver*/)
|
|
|
|
{
|
|
|
|
a & m_keys;
|
|
|
|
a & m_creation_timestamp;
|
|
|
|
}
|
|
|
|
|
|
|
|
BEGIN_KV_SERIALIZE_MAP()
|
|
|
|
KV_SERIALIZE(m_keys)
|
|
|
|
KV_SERIALIZE(m_creation_timestamp)
|
|
|
|
END_KV_SERIALIZE_MAP()
|
|
|
|
|
|
|
|
private:
|
|
|
|
void set_null();
|
|
|
|
account_keys m_keys;
|
|
|
|
uint64_t m_creation_timestamp;
|
|
|
|
};
|
|
|
|
}
|