Hi All/Wei,
I'm not sure if I'm reading this correctly, but I took a quick at
StringStore look while stepping TestAuthenticatedSymmetricCipher. The
problem is probably my lack of C++ skills (so take it for what it is
worth):
//! string-based implementation of Store interface
class StringStore : public Store
{
public:
StringStore(const char *string = NULL)...
private:
const byte *m_store;
size_t m_length, m_count;
};
If the m_store is accumulating plain text, SecByteBlock might be
prudent. Otherwise, for efficiency, perhaps there might be a need for
a SecureStringStore.
Jeff
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the "Crypto++ Users"
Google Group.
To unsubscribe, send an email to [email protected].
More information about Crypto++ and this group is available at
http://www.cryptopp.com.
-~----------~----~----~----~------~----~------~--~---