Newer
Older
#include "axolotl/account.hh"
#include "axolotl/pickle.hh"
axolotl::LocalKey const * axolotl::Account::lookup_key(
std::uint32_t id
) {
for (axolotl::LocalKey const & key : one_time_keys) {
if (key.id == id) return &key;
}
return 0;
}
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
std::size_t axolotl::Account::new_account_random_length() {
return 103 * 32;
}
std::size_t axolotl::Account::new_account(
uint8_t const * random, std::size_t random_length
) {
if (random_length < new_account_random_length()) {
last_error = axolotl::ErrorCode::NOT_ENOUGH_RANDOM;
}
unsigned id = 0;
identity_key.id = ++id;
axolotl::generate_key(random, identity_key.key);
random += 32;
random += 32;
last_resort_one_time_key.id = ++id;
axolotl::generate_key(random, last_resort_one_time_key.key);
random += 32;
for (unsigned i = 0; i < 100; ++i) {
LocalKey & key = *one_time_keys.insert(one_time_keys.end());
key.id = ++id;
axolotl::generate_key(random, key.key);
random += 32;
}
return 0;
}
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
namespace axolotl {
static std::size_t pickle_length(
axolotl::LocalKey const & value
) {
return axolotl::pickle_length(value.id) + axolotl::pickle_length(value.key);
}
static std::uint8_t * pickle(
std::uint8_t * pos,
axolotl::LocalKey const & value
) {
pos = axolotl::pickle(pos, value.id);
pos = axolotl::pickle(pos, value.key);
return pos;
}
static std::uint8_t const * unpickle(
std::uint8_t const * pos, std::uint8_t const * end,
axolotl::LocalKey & value
) {
pos = axolotl::unpickle(pos, end, value.id);
pos = axolotl::unpickle(pos, end, value.key);
return pos;
}
static std::size_t pickle_length(
axolotl::SignedKey const & value
) {
return axolotl::pickle_length((axolotl::LocalKey const &) value) + 64;
}
static std::uint8_t * pickle(
std::uint8_t * pos,
axolotl::SignedKey const & value
) {
pos = axolotl::pickle(pos, (axolotl::LocalKey const &) value);
pos = axolotl::pickle_bytes(pos, value.signature, 64);
return pos;
}
static std::uint8_t const * unpickle(
std::uint8_t const * pos, std::uint8_t const * end,
axolotl::SignedKey & value
) {
pos = axolotl::unpickle(pos, end, (axolotl::LocalKey &) value);
pos = axolotl::unpickle_bytes(pos, end, value.signature, 64);
return pos;
}
} // namespace axolotl
axolotl::Account const & value
) {
std::size_t length = 0;
length += axolotl::pickle_length(value.identity_key);
length += axolotl::pickle_length(value.last_resort_one_time_key);
length += axolotl::pickle_length(value.one_time_keys);
return length;
}
std::uint8_t * pos,
axolotl::Account const & value
) {
pos = axolotl::pickle(pos, value.identity_key);
pos = axolotl::pickle(pos, value.last_resort_one_time_key);
pos = axolotl::pickle(pos, value.one_time_keys);
return pos;
}
std::uint8_t const * pos, std::uint8_t const * end,
axolotl::Account & value
) {
pos = axolotl::unpickle(pos, end, value.identity_key);
pos = axolotl::unpickle(pos, end, value.last_resort_one_time_key);
pos = axolotl::unpickle(pos, end, value.one_time_keys);
return pos;
}