Use of IDEA module
Default SecureBlackbox installation doesn't include support for IDEA.
The modules for IDEA support are available as a separate downloadable installation on SecureBlackbox download page.
If you need to use IDEA support, download and install these additional modules.
- VCL edition:
To use the installable IDEA module with Delphi/Win32 (VCL) application, add "SBCryptoProvBuiltInEx" to the "uses" clause of your project.
To use the installable IDEA module with C++Builder (VCL) application, add the following lines to the source code of your project:
#include "SBCryptoProvBuiltInEx.hpp"
#pragma link "SBCryptoProvBuiltInEx"
- .NET edition:
To use the installable IDEA module with .NET application
- add a reference to SecureBlackbox.IDEA.dll assembly
- add "SBCryptoProvBuiltInEx" to the list of the used namespaces
- call TElBuiltInExtendedCryptoProvider.SetAsDefault() method
|