mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
decryption of key image file added using private view key
This commit is contained in:
parent
d4097940c4
commit
a59b85192f
3 changed files with 74 additions and 7 deletions
29
src/page.h
29
src/page.h
|
@ -2020,18 +2020,33 @@ namespace xmreg {
|
||||||
|
|
||||||
const size_t magiclen = strlen(KEY_IMAGE_EXPORT_FILE_MAGIC);
|
const size_t magiclen = strlen(KEY_IMAGE_EXPORT_FILE_MAGIC);
|
||||||
|
|
||||||
// if (!strncmp(decoded_raw_data.c_str(), KEY_IMAGE_EXPORT_FILE_MAGIC, magiclen) == 0)
|
if (!strncmp(decoded_raw_data.c_str(), KEY_IMAGE_EXPORT_FILE_MAGIC, magiclen) == 0)
|
||||||
// {
|
{
|
||||||
// cout << "This does not seem to be key image export data" << endl;
|
cout << "This does not seem to be key image export data" << endl;
|
||||||
// return string {"This does not seem to be key image export data"};
|
return string {"This does not seem to be key image export data"};
|
||||||
// }
|
}
|
||||||
|
|
||||||
|
// decrypt key images data using private view key
|
||||||
|
// dont use authentication (i.e., false), as we are
|
||||||
|
// not interested if this key image data is properly signed
|
||||||
|
decoded_raw_data = xmreg::decrypt(
|
||||||
|
std::string(decoded_raw_data, magiclen),
|
||||||
|
prv_view_key, false);
|
||||||
|
|
||||||
// header is public spend and keys
|
// header is public spend and keys
|
||||||
const size_t header_lenght = 2 * sizeof(crypto::public_key);
|
const size_t header_lenght = 2 * sizeof(crypto::public_key);
|
||||||
const size_t key_img_size = sizeof(crypto::key_image);
|
const size_t key_img_size = sizeof(crypto::key_image);
|
||||||
const size_t record_lenght = key_img_size + sizeof(crypto::signature);
|
const size_t record_lenght = key_img_size + sizeof(crypto::signature);
|
||||||
|
const size_t chacha_length = sizeof(crypto::chacha8_key);
|
||||||
|
|
||||||
if ((decoded_raw_data.size() - header_lenght) % record_lenght)
|
|
||||||
|
cout << header_lenght << endl;
|
||||||
|
cout << key_img_size << endl;
|
||||||
|
cout << record_lenght << endl;
|
||||||
|
cout << decoded_raw_data.size() - header_lenght << endl;
|
||||||
|
cout << (decoded_raw_data.size() - header_lenght) % record_lenght << endl;
|
||||||
|
|
||||||
|
if (decoded_raw_data.size() < header_lenght)
|
||||||
{
|
{
|
||||||
cerr << "Bad data size from submitted key images raw data" << endl;
|
cerr << "Bad data size from submitted key images raw data" << endl;
|
||||||
return string {"Bad data size from submitted key images raw data"};
|
return string {"Bad data size from submitted key images raw data"};
|
||||||
|
@ -2040,7 +2055,7 @@ namespace xmreg {
|
||||||
// get xmr address stored in this key image file
|
// get xmr address stored in this key image file
|
||||||
const account_public_address* xmr_address =
|
const account_public_address* xmr_address =
|
||||||
reinterpret_cast<const account_public_address*>(
|
reinterpret_cast<const account_public_address*>(
|
||||||
decoded_raw_data.data() + magiclen);
|
decoded_raw_data.data());
|
||||||
|
|
||||||
// initalize page template context map
|
// initalize page template context map
|
||||||
mstch::map context {
|
mstch::map context {
|
||||||
|
|
|
@ -785,5 +785,50 @@ namespace xmreg
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// from wallet2::decrypt
|
||||||
|
string
|
||||||
|
decrypt(const std::string &ciphertext,
|
||||||
|
const crypto::secret_key &skey,
|
||||||
|
bool authenticated)
|
||||||
|
{
|
||||||
|
crypto::chacha8_key key;
|
||||||
|
|
||||||
|
crypto::generate_chacha8_key(&skey, sizeof(skey), key);
|
||||||
|
|
||||||
|
const crypto::chacha8_iv &iv = *(const crypto::chacha8_iv*)&ciphertext[0];
|
||||||
|
|
||||||
|
std::string plaintext;
|
||||||
|
|
||||||
|
plaintext.resize(ciphertext.size() - sizeof(iv) -
|
||||||
|
(authenticated ? sizeof(crypto::signature) : 0));
|
||||||
|
|
||||||
|
if (authenticated)
|
||||||
|
{
|
||||||
|
crypto::hash hash;
|
||||||
|
crypto::cn_fast_hash(ciphertext.data(), ciphertext.size() - sizeof(signature), hash);
|
||||||
|
crypto::public_key pkey;
|
||||||
|
crypto::secret_key_to_public_key(skey, pkey);
|
||||||
|
|
||||||
|
const crypto::signature &signature
|
||||||
|
= *(const crypto::signature*)&ciphertext[ciphertext.size() - sizeof(crypto::signature)];
|
||||||
|
|
||||||
|
if (!crypto::check_signature(hash, pkey, signature))
|
||||||
|
{
|
||||||
|
cerr << "Failed to authenticate criphertext" << endl;
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
crypto::chacha8(
|
||||||
|
ciphertext.data() + sizeof(iv),
|
||||||
|
ciphertext.size() - sizeof(iv),
|
||||||
|
key, iv, &plaintext[0]);
|
||||||
|
|
||||||
|
return plaintext;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -237,6 +237,13 @@ namespace xmreg
|
||||||
bool
|
bool
|
||||||
get_dummy_account_keys(account_keys& dummy_keys, bool testnet = false);
|
get_dummy_account_keys(account_keys& dummy_keys, bool testnet = false);
|
||||||
|
|
||||||
|
|
||||||
|
// from wallet2::decrypt
|
||||||
|
string
|
||||||
|
decrypt(const std::string &ciphertext,
|
||||||
|
const crypto::secret_key &skey,
|
||||||
|
bool authenticated = true);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif //XMREG01_TOOLS_H
|
#endif //XMREG01_TOOLS_H
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue