You can use abstract classes:
class CryptoAlgorithm
{
public:
// whatever functions all the algorithms do
virtual vector<char> Encrypt(vector<char>)=0;
virtual vector<char> Decrypt(vector<char>)=0;
virtual void SetKey(vector<char>)=0;
// etc
}
// user algorithm
class DES : public CryptoAlgorithm
{
// implements the Encrypt, Decrypt, SetKey etc
}
// your function
class mode{
public:
mode(CryptoAlgorithm *algo) // << gets a pointer to an instance of a algo-specific class
//derived from the abstract interface
: _algo(algo) {}; // <<- make a "Set" method to be able to check for null or
// throw exceptions, etc
private:
CryptoAlgorithm *_algo;
}
// in your code
...
_algo->Encrypt(data);
...
//
In this way when you call _algo->Encrypt - you don't know and don't care about which specific algorithm you're using, just that it implements the interface all the crypto algorithms should be implementing.
algorithm_class(is itAlgorithm_classor anything) ? – iammilind Jun 5 '11 at 4:17modeconstructor. – Nemo Jun 5 '11 at 5:01