struct CCL::Security::Crypto::ICryptoFactory

#include <icryptor.h>

struct ICryptoFactory: public CCL::IUnknown
{
    // methods

    virtual ICryptor*CCL_API createCryptor (
        Mode mode,
        Algorithm algorithm,
        BlockRef key,
        int options = 0
    ) = 0;

    virtual IProcessor*CCL_API createXORProcessor (int options = 0) = 0;
};

Inherited Members

public:
    // methods

    virtual tresult CCL_API queryInterface (UIDRef iid, void** ptr) = 0;
    virtual unsigned int CCL_API retain () = 0;
    virtual unsigned int CCL_API release () = 0;