J
Jeffrey Walton
Hi All,
I can't seem to get my syntax right. I've also tried the following,
and lots of unreadable combinations.
typedef typename C::value_type CIPHER;
typedef typename M::value_type MODE;
MODE < CIPHER > m_cipher;
Any help would be appreciated.
Jeff
template <class C, class M>
class BlockCipherGenerator : public KeyGenerator
{
...
private:
M < C > m_cipher;
};
I can't seem to get my syntax right. I've also tried the following,
and lots of unreadable combinations.
typedef typename C::value_type CIPHER;
typedef typename M::value_type MODE;
MODE < CIPHER > m_cipher;
Any help would be appreciated.
Jeff
template <class C, class M>
class BlockCipherGenerator : public KeyGenerator
{
...
private:
M < C > m_cipher;
};