Monero
account.h
Go to the documentation of this file.
1 // Copyright (c) 2014-2018, The Monero Project
2 //
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without modification, are
6 // permitted provided that the following conditions are met:
7 //
8 // 1. Redistributions of source code must retain the above copyright notice, this list of
9 // conditions and the following disclaimer.
10 //
11 // 2. Redistributions in binary form must reproduce the above copyright notice, this list
12 // of conditions and the following disclaimer in the documentation and/or other
13 // materials provided with the distribution.
14 //
15 // 3. Neither the name of the copyright holder nor the names of its contributors may be
16 // used to endorse or promote products derived from this software without specific
17 // prior written permission.
18 //
19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
20 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
22 // THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
27 // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 //
29 // Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
30 
31 #pragma once
32 
33 #include "cryptonote_basic.h"
34 #include "crypto/crypto.h"
35 #include "serialization/keyvalue_serialization.h"
36 
37 namespace cryptonote
38 {
39 
40  struct account_keys
41  {
45  std::vector<crypto::secret_key> m_multisig_keys;
47  crypto::chacha_iv m_encryption_iv;
48 
49  BEGIN_KV_SERIALIZE_MAP()
50  KV_SERIALIZE(m_account_address)
51  KV_SERIALIZE_VAL_POD_AS_BLOB_FORCE(m_spend_secret_key)
52  KV_SERIALIZE_VAL_POD_AS_BLOB_FORCE(m_view_secret_key)
53  KV_SERIALIZE_CONTAINER_POD_AS_BLOB(m_multisig_keys)
54  const crypto::chacha_iv default_iv{{0, 0, 0, 0, 0, 0, 0, 0}};
55  KV_SERIALIZE_VAL_POD_AS_BLOB_OPT(m_encryption_iv, default_iv)
56  END_KV_SERIALIZE_MAP()
57 
58  account_keys& operator=(account_keys const&) = default;
59 
60  void encrypt(const crypto::chacha_key &key);
61  void decrypt(const crypto::chacha_key &key);
62  void encrypt_viewkey(const crypto::chacha_key &key);
63  void decrypt_viewkey(const crypto::chacha_key &key);
64 
65  hw::device& get_device() const ;
66  void set_device( hw::device &hwdev) ;
67 
68  private:
69  void xor_with_key_stream(const crypto::chacha_key &key);
70  };
71 
72  /************************************************************************/
73  /* */
74  /************************************************************************/
76  {
77  public:
78  account_base();
79  crypto::secret_key generate(const crypto::secret_key& recovery_key = crypto::secret_key(), bool recover = false, bool two_random = false);
80  void create_from_device(const std::string &device_name);
81  void create_from_device(hw::device &hwdev);
82  void create_from_keys(const cryptonote::account_public_address& address, const crypto::secret_key& spendkey, const crypto::secret_key& viewkey);
83  void create_from_viewkey(const cryptonote::account_public_address& address, const crypto::secret_key& viewkey);
84  bool make_multisig(const crypto::secret_key &view_secret_key, const crypto::secret_key &spend_secret_key, const crypto::public_key &spend_public_key, const std::vector<crypto::secret_key> &multisig_keys);
85  void finalize_multisig(const crypto::public_key &spend_public_key);
86  const account_keys& get_keys() const;
87  std::string get_public_address_str(network_type nettype) const;
88  std::string get_public_integrated_address_str(const crypto::hash8 &payment_id, network_type nettype) const;
89 
90  hw::device& get_device() const {return m_keys.get_device();}
91  void set_device( hw::device &hwdev) {m_keys.set_device(hwdev);}
92 
93  uint64_t get_createtime() const { return m_creation_timestamp; }
94  void set_createtime(uint64_t val) { m_creation_timestamp = val; }
95 
96  bool load(const std::string& file_path);
97  bool store(const std::string& file_path);
98 
99  void forget_spend_key();
100  const std::vector<crypto::secret_key> &get_multisig_keys() const { return m_keys.m_multisig_keys; }
101 
102  void encrypt_keys(const crypto::chacha_key &key) { m_keys.encrypt(key); }
103  void decrypt_keys(const crypto::chacha_key &key) { m_keys.decrypt(key); }
104  void encrypt_viewkey(const crypto::chacha_key &key) { m_keys.encrypt_viewkey(key); }
105  void decrypt_viewkey(const crypto::chacha_key &key) { m_keys.decrypt_viewkey(key); }
106 
107  template <class t_archive>
108  inline void serialize(t_archive &a, const unsigned int /*ver*/)
109  {
110  a & m_keys;
111  a & m_creation_timestamp;
112  }
113 
114  BEGIN_KV_SERIALIZE_MAP()
115  KV_SERIALIZE(m_keys)
116  KV_SERIALIZE(m_creation_timestamp)
117  END_KV_SERIALIZE_MAP()
118 
119  private:
120  void set_null();
121  account_keys m_keys;
122  uint64_t m_creation_timestamp;
123  };
124 }
void encrypt_viewkey(const crypto::chacha_key &key)
Definition: account.cpp:116
void decrypt_viewkey(const crypto::chacha_key &key)
Definition: account.cpp:126
crypto namespace.
Definition: crypto.cpp:59
epee::mlocked< tools::scrubbed< ec_scalar > > secret_key
Definition: crypto.h:69
const crypto::chacha_iv default_iv
Definition: account.h:54
void encrypt_keys(const crypto::chacha_key &key)
Definition: account.h:102
Holds cryptonote related classes and helpers.
Definition: db_bdb.cpp:224
crypto::chacha_iv m_encryption_iv
Definition: account.h:47
void decrypt_keys(const crypto::chacha_key &key)
Definition: account.h:103
hw::device & get_device() const
Definition: account.h:90
Definition: account.h:75
device & get_device(const std::string &device_descriptor)
Definition: device.cpp:82
void serialize(t_archive &a, const unsigned int)
Definition: account.h:108
void load(Archive &a, std::unordered_map< h_key, hval > &x, const boost::serialization::version_type ver)
Definition: unordered_containers_boost_serialization.h:54
Definition: device.cpp:38
Definition: device.hpp:82
hw::device * m_device
Definition: account.h:46
Definition: account.h:40
void set_createtime(uint64_t val)
Definition: account.h:94
void encrypt(const crypto::chacha_key &key)
Definition: account.cpp:105
POD_CLASS public_key
Definition: crypto.h:63
void set_device(hw::device &hwdev)
Definition: account.h:91
crypto::secret_key m_view_secret_key
Definition: account.h:44
account_public_address m_account_address
Definition: account.h:42
network_type
Definition: cryptonote_config.h:204
Definition: cryptonote_basic.h:400
POD_CLASS hash8
Definition: hash.h:52
void xor_with_key_stream(const crypto::chacha_key &key)
Definition: account.cpp:89
crypto::secret_key m_spend_secret_key
Definition: account.h:43
string a
Definition: MakeCryptoOps.py:15
void set_device(hw::device &hwdev)
Definition: account.cpp:62
std::vector< crypto::secret_key > m_multisig_keys
Definition: account.h:45
void decrypt(const crypto::chacha_key &key)
Definition: account.cpp:111
uint64_t get_createtime() const
Definition: account.h:93
const std::vector< crypto::secret_key > & get_multisig_keys() const
Definition: account.h:100
hw::device & get_device() const
Definition: account.cpp:58
void encrypt_viewkey(const crypto::chacha_key &key)
Definition: account.h:104
void decrypt_viewkey(const crypto::chacha_key &key)
Definition: account.h:105