Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check for diversifier overflow #1371

Merged
merged 1 commit into from
Dec 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 33 additions & 4 deletions src/libspark/test/encrypt_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,37 @@ BOOST_AUTO_TEST_CASE(complete)
BOOST_CHECK_EQUAL(i_, i);
}

BOOST_AUTO_TEST_CASE(overflow)
{
// Number of bytes for our diversifier; this needs to exceed `uint64_t` bounds but not the AES block size
int BYTES = 10;

// Key
std::string key_string = "Key prefix";
std::vector<unsigned char> key(key_string.begin(), key_string.end());
key.resize(AES256_KEYSIZE);

// Encrypt a value that will exceed `uint64_t` bounds
// We have to do this manually since the diversifier API won't let us!
std::vector<unsigned char> plaintext;
plaintext.resize(BYTES);
for (int i = 0; i < BYTES; i++) {
plaintext[i] = 0xFF; // this will exceed the allowed bounds
}

std::vector<unsigned char> ciphertext;
ciphertext.resize(AES_BLOCKSIZE);
std::vector<unsigned char> iv;
iv.resize(AES_BLOCKSIZE);

AES256CBCEncrypt aes(key.data(), iv.data(), true);
plaintext.resize(AES_BLOCKSIZE);
aes.Encrypt(plaintext.data(), BYTES, ciphertext.data());

// Decrypt
BOOST_CHECK_THROW(SparkUtils::diversifier_decrypt(key, ciphertext), std::runtime_error);
}

BOOST_AUTO_TEST_CASE(bad_key)
{
// Key
Expand All @@ -41,10 +72,8 @@ BOOST_AUTO_TEST_CASE(bad_key)
uint64_t i = 12345;
std::vector<unsigned char> d = SparkUtils::diversifier_encrypt(key, i);

// Decrypt
uint64_t i_ = SparkUtils::diversifier_decrypt(evil_key, d);

BOOST_CHECK_NE(i_, i);
// Decryption induces a padding failure, so no plaintext is returned
BOOST_CHECK_THROW(SparkUtils::diversifier_decrypt(evil_key, d), std::runtime_error);
}

BOOST_AUTO_TEST_SUITE_END()
Expand Down
9 changes: 6 additions & 3 deletions src/libspark/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,18 @@ uint64_t SparkUtils::diversifier_decrypt(const std::vector<unsigned char>& key,
std::vector<unsigned char> iv;
iv.resize(AES_BLOCKSIZE);

// Decrypt using padded AES-256 (CBC) using a zero IV, ensuring that the decrypted data is the expected length
AES256CBCDecrypt aes(key.data(), iv.data(), true);
std::vector<unsigned char> plaintext;
plaintext.resize(AES_BLOCKSIZE);
aes.Decrypt(d.data(), d.size(), plaintext.data());
int length = aes.Decrypt(d.data(), d.size(), plaintext.data());
if (length != sizeof(uint64_t)) {
throw std::runtime_error("Invalid diversifier length");
}

// Decrypt using padded AES-256 (CBC) using a zero IV
// Deserialize the diversifier
CDataStream i_stream(SER_NETWORK, PROTOCOL_VERSION);
i_stream.write((const char *)plaintext.data(), sizeof(uint64_t));
// Deserialize the diversifier
uint64_t i;
i_stream >> i;

Expand Down
Loading