missing security functions fix

Signed-off-by: Eszter Susanszky <eszter.susanszky@ericsson.com>
diff --git a/EPTF_Applib_HTTP_CNL113618.tpd b/EPTF_Applib_HTTP_CNL113618.tpd
index 199c7aa..9b3efa8 100755
--- a/EPTF_Applib_HTTP_CNL113618.tpd
+++ b/EPTF_Applib_HTTP_CNL113618.tpd
@@ -28,7 +28,6 @@
     <ReferencedProject name="EPTF_CLL_Variable" projectLocationURI="../EPTF_Core_Library_CNL113512/src/Variable/EPTF_CLL_Variable.tpd"/>
     <ReferencedProject name="HTTPmsg_CNL113312" projectLocationURI="../../TestPorts/HTTPmsg_CNL113312/HTTPmsg_CNL113312.tpd"/>
     <ReferencedProject name="IPL4asp_CNL113531" projectLocationURI="../../TestPorts/IPL4asp_CNL113531/IPL4asp_CNL113531.tpd"/>
-    <ReferencedProject name="TCCUsefulFunctions_CNL113472_Security" projectLocationURI="../TCCUsefulFunctions_CNL113472/TCCUsefulFunctions_CNL113472_Security.tpd"/>
   </ReferencedProjects>
   <Files>
     <FileResource projectRelativePath="EPTF_HTTP_Definitions.ttcn" relativeURI="src/LoadGen/EPTF_HTTP_Definitions.ttcn"/>
@@ -45,7 +44,7 @@
           <GNUMake>true</GNUMake>
           <incrementalDependencyRefresh>true</incrementalDependencyRefresh>
           <targetExecutable>bin/EPTF_Applib_HTTP_CNL113618</targetExecutable>
-          <buildLevel>Level 3 - Creating object files with dependency update</buildLevel>
+          <buildLevel>Level3-Creatingobjectfileswithdependencyupdate</buildLevel>
         </MakefileSettings>
         <LocalBuildSettings>
           <workingDirectory>bin</workingDirectory>
diff --git a/src/LoadGen/EPTF_HTTP_Functions.ttcn b/src/LoadGen/EPTF_HTTP_Functions.ttcn
index 9c52dab..eb1f495 100644
--- a/src/LoadGen/EPTF_HTTP_Functions.ttcn
+++ b/src/LoadGen/EPTF_HTTP_Functions.ttcn
@@ -81,7 +81,6 @@
 import from EPTF_HTTP_Definitions all;
 import from HTTPmsg_Types all;
 
-import from TCCSecurity_Functions all;
 import from TCCDateTime_Functions all;
 import from TCCConversion_Functions all;
 
@@ -6878,6 +6877,32 @@
   {
     //f_EPTF_HTTP_debug(pl_bodyMessage);
   }
+  
+  function f_calculateMD5(in charstring pszHashInput)
+  return charstring 
+  {
+    // implemented in a non-opensource TCC useful functions module
+    action("f_calculateMD5 not implemented!!");
+    return "";
+  }
+  
+  function f_calculateDigestResponse(
+    charstring nonce,
+    charstring cnonce,
+    charstring user,
+    charstring realm,
+    charstring passwd,
+    charstring alg,
+    charstring nonceCount,
+    charstring method,
+    charstring qop,
+    charstring URI,
+    charstring HEntity) return charstring 
+  {
+    // implemented in a non-opensource TCC useful functions module
+    action("f_calculateDigestResponse not implemented!!");
+    return "";
+  }
 
 } //EPTF_HTTP_DefaultFunctions