crypto/weakcryptospi/test/tcryptospi/src/te_cryptospiserver.cpp
branchRCL_3
changeset 95 641f389e9157
parent 53 030c4fbc13d7
child 96 a71299154b21
--- 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;
 	}