diff -r f18401adf8e1 -r 641f389e9157 crypto/weakcryptospi/test/tcryptospi/src/te_cryptospiserver.cpp --- a/crypto/weakcryptospi/test/tcryptospi/src/te_cryptospiserver.cpp Thu Aug 19 11:38:48 2010 +0300 +++ b/crypto/weakcryptospi/test/tcryptospi/src/te_cryptospiserver.cpp Tue Aug 31 17:00:08 2010 +0300 @@ -105,6 +105,10 @@ #include "ruleselectcommonstep.h" +#if (defined(SYMBIAN_ENABLE_SDP_WMDRM_SUPPORT) && defined(SYMBIAN_ENABLE_SDP_ECC)) +#include "dummyecccipherloadstep.h" +#include "dummyeccsignerloadstep.h" +#endif //#include "pluginruleselectstep.h" _LIT(KServerName,"Te_CryptoSpi"); @@ -331,5 +335,12 @@ else if(aStepName == KRuleSelectCommonStep) testStep = new CRuleSelectCommonStep(); +#if (defined(SYMBIAN_ENABLE_SDP_WMDRM_SUPPORT) && defined(SYMBIAN_ENABLE_SDP_ECC)) + else if(aStepName == KDummyEccCipherLoadStep) + testStep = new CDummyEccCipherLoadStep(); + else if(aStepName == KDummyEccSignerLoadStep) + testStep = new CDummyEccSignerLoadStep(); +#endif + return testStep; }