ringct: add convenience functions to bridge ringct and cryptonote

release-v0.4.0.1
moneromooo-monero 8 years ago
parent eb56d0f994
commit c3a2e1450a
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -287,6 +287,11 @@ namespace rct {
void b2h(key & amountdh, bits amountb2);
//int[64] to uint long long
xmr_amount b2d(bits amountb);
static inline bool operator==(const key &k0, const public_key &k1) { return !memcmp(&k0, &k1, 32); }
static inline bool operator==(const public_key &k0, const key &k1) { return !memcmp(&k0, &k1, 32); }
static inline key pk2rct(const public_key &pk) { key k; memcpy(&k, &pk, 32); return k; }
static inline public_key rct2pk(const key &k) { public_key pk; memcpy(&pk, &k, 32); return pk; }
}
template<typename T> std::ostream &print256(std::ostream &o, const T &v);

Loading…
Cancel
Save