When using the Botan::SecureVector in the following unit test:
void UnitTest()
{
std::vector<byte> vbData;
vbData.push_back(0x04);
vbData.push_back(0x04);
vbData.push_back(0x04);
Botan::SecureVector<Botan::byte> svData(&vbData[0], vbData.size());
CPPUNIT_ASSERT(vbData == std::vector<byte>(svData.begin(), svData.end()));
}
a segmentation fault occurs when trying to allocate the SecureVector as it tries to deallocate a buffer during its construction.
vbDataand then use a vector calledbbData(first letter is different). Is that potentially the error (is there a globalbbData?) or is that just a typo? – Tyler McHenry May 25 '10 at 16:06