Update contrib.
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
7 * Redistributions of source code must retain the above copyright notice, this
8 * list of conditions and the following disclaimer.
9 * Redistributions in binary form must reproduce the above copyright notice,
10 * this list of conditions and the following disclaimer in the documentation
11 * and/or other materials provided with the distribution.
12 * Neither the name of Nokia Corporation nor the names of its contributors
13 * may be used to endorse or promote products derived from this software
14 * without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 * Description: ?Description
35 #include <StifParser.h>
36 #include <Stiftestinterface.h>
37 #include "crypto_test.h"
38 #include "tcrypto_test.h"
43 // EXTERNAL DATA STRUCTURES
44 //extern ?external_data;
46 // EXTERNAL FUNCTION PROTOTYPES
47 //extern ?external_function( ?arg_type,?arg_type );
50 //const ?type ?constant_var = ?constant;
53 //#define ?macro ?macro_def
55 // LOCAL CONSTANTS AND MACROS
56 //const ?type ?constant_var = ?constant;
57 //#define ?macro_name ?macro_def
59 // MODULE DATA STRUCTURES
61 //typedef ?declaration
63 // LOCAL FUNCTION PROTOTYPES
64 //?type ?function_name( ?arg_type, ?arg_type );
66 // FORWARD DECLARATIONS
67 //class ?FORWARD_CLASSNAME;
69 // ============================= LOCAL FUNCTIONS ===============================
71 // -----------------------------------------------------------------------------
72 // ?function_name ?description.
74 // Returns: ?value_1: ?description
75 // ?value_n: ?description_line1
77 // -----------------------------------------------------------------------------
81 ?arg_type arg, // ?description
82 ?arg_type arg) // ?description
92 // ============================ MEMBER FUNCTIONS ===============================
94 // -----------------------------------------------------------------------------
95 // Ccrypto_test::Delete
96 // Delete here all resources allocated and opened from test methods.
97 // Called from destructor.
98 // -----------------------------------------------------------------------------
100 void Ccrypto_test::Delete()
105 // -----------------------------------------------------------------------------
106 // Ccrypto_test::RunMethodL
107 // Run specified method. Contains also table of test mothods and their names.
108 // -----------------------------------------------------------------------------
110 TInt Ccrypto_test::RunMethodL(
111 CStifItemParser& aItem )
114 static TStifFunctionInfo const KFunctions[] =
116 // Copy this line for every implemented function.
117 // First string is the function name used in TestScripter script file.
118 // Second is the actual implementation member function.
119 ENTRY( "BNTest", Ccrypto_test::BnTest ),
120 ENTRY( "DESTest", Ccrypto_test::DesTest ),
121 ENTRY( "DHTest", Ccrypto_test::DhTest ),
122 ENTRY( "DSATest", Ccrypto_test::DsaTest ),
123 ENTRY( "ENGINETest", Ccrypto_test::EngineTest ),
124 ENTRY( "EVPTest", Ccrypto_test::EvpTest ),
125 ENTRY( "EXPTest", Ccrypto_test::ExpTest ),
126 ENTRY( "HMACTest", Ccrypto_test::HmacTest ),
127 ENTRY( "MD2Test", Ccrypto_test::Md2Test ),
128 ENTRY( "MD5Test", Ccrypto_test::Md5Test ),
129 ENTRY( "RANDTest", Ccrypto_test::RandTest ),
130 ENTRY( "RC2Test", Ccrypto_test::Rc2Test ),
131 ENTRY( "RC4Test", Ccrypto_test::Rc4Test ),
132 ENTRY( "RSATest", Ccrypto_test::RsaTest ),
133 ENTRY( "SHATest", Ccrypto_test::ShaTest ),
134 ENTRY( "SHA1Test", Ccrypto_test::Sha1Test ),
135 ENTRY( "SHA256Test", Ccrypto_test::Sha256Test ),
136 ENTRY( "SHA512Test", Ccrypto_test::Sha512Test ),
140 const TInt count = sizeof( KFunctions ) /
141 sizeof( TStifFunctionInfo );
143 return RunInternalL( KFunctions, count, aItem );
152 FILE *fp_stdout=NULL;
153 FILE *fp_stderr=NULL;
158 int cryptotest_init(char *mod)
164 len=strlen(LOG_STDOUT);
165 strcpy(str,LOG_STDOUT);
170 fp_stdout = fopen(str,"a+b");
177 void cryptotest_deinit(void)
183 char ** MakeArgs(CStifItemParser& aItem,int * argc)
195 //parse through the parameters of cfg to find the number and strings of cmd line
197 while(aItem.GetNextString(string)!=-1)
200 argument=(char *)buf1.Ptr();
204 ini_cmd[cnt]=(char *)malloc(sizeof(char)*len+1);
205 if(ini_cmd[cnt]==NULL)
214 strcpy(ini_cmd[cnt],(const char *)argument);
219 //allocate memory for the command line ragged array
221 cmd_line=(char **)malloc(cnt*sizeof(char *));
232 //initialize the array
234 for(i=0;i<cnt;i++) cmd_line[i]=ini_cmd[i];
243 //-----------------------------------------------------------------------------
244 //function function for destroying argv
245 //-----------------------------------------------------------------------------
246 void DeleteArgs(char ** cmd_line,int argc)
249 for(i=0;i<argc;i++) free(cmd_line[i]);
255 // -----------------------------------------------------------------------------
256 // Ccrypto_test::ExampleL
257 // Example test method function.
258 // (other items were commented in a header).
259 // -----------------------------------------------------------------------------
263 TInt Ccrypto_test::BnTest( CStifItemParser&/* aItem*/ )
268 if(!cryptotest_init("bn"))
270 ret = bn_main(0,NULL);
274 if(ret==1&&errno==ENOMEM)
284 TInt Ccrypto_test::DesTest( CStifItemParser&/* aItem*/ )
289 if(!cryptotest_init("des"))
291 ret = des_main(0,NULL);
295 if(ret==1&&errno==ENOMEM)
306 TInt Ccrypto_test::DhTest( CStifItemParser&/* aItem*/ )
311 if(!cryptotest_init("dh"))
313 ret = dh_main(0,NULL);
316 if(ret==1&&errno==ENOMEM)
324 TInt Ccrypto_test::DsaTest( CStifItemParser&/* aItem*/ )
327 if(!cryptotest_init("dsa"))
329 ret = dsa_main(0,NULL);
333 if(ret==1&&errno==ENOMEM)
343 TInt Ccrypto_test::EngineTest( CStifItemParser&/* aItem*/ )
347 if(!cryptotest_init("eng"))
349 ret = engine_main(0,NULL);
353 if(ret==1&&errno==ENOMEM)
361 TInt Ccrypto_test::EvpTest( CStifItemParser& aItem )
367 argv = MakeArgs(aItem,&argc);
372 if(!cryptotest_init("evp"))
374 ret = evp_main(argc,argv);
378 DeleteArgs(argv,argc);
379 if(ret==1&&errno==ENOMEM)
388 TInt Ccrypto_test::ExpTest( CStifItemParser& /*aItem */)
392 if(!cryptotest_init("exp"))
394 ret = exp_main(0,NULL);
398 if(ret==1&&errno==ENOMEM)
405 TInt Ccrypto_test::HmacTest( CStifItemParser& /*aItem */)
409 if(!cryptotest_init("hmac"))
411 ret = hmac_main(0,NULL);
415 if(ret==1&&errno==ENOMEM)
424 TInt Ccrypto_test::Md2Test( CStifItemParser& /*aItem */)
428 if(!cryptotest_init("md2"))
430 ret = md2_main(0,NULL);
434 if(ret==1&&errno==ENOMEM)
441 TInt Ccrypto_test::Md5Test( CStifItemParser& /*aItem */)
445 if(!cryptotest_init("md5"))
447 ret = md5_main(0,NULL);
451 if(ret==1&&errno==ENOMEM)
458 TInt Ccrypto_test::RandTest( CStifItemParser& /*aItem */)
462 if(!cryptotest_init("rand"))
464 ret = rand_main(0,NULL);
468 if(ret==1&&errno==ENOMEM)
477 TInt Ccrypto_test::Rc2Test( CStifItemParser& /*aItem */)
481 if(!cryptotest_init("rc2"))
483 ret = rc2_main(0,NULL);
488 if(ret==1&&errno==ENOMEM)
496 TInt Ccrypto_test::Rc4Test( CStifItemParser& /*aItem */)
500 if(!cryptotest_init("rc4"))
502 ret = rc4_main(0,NULL);
507 if(ret==1&&errno==ENOMEM)
515 TInt Ccrypto_test::RsaTest( CStifItemParser& /*aItem */)
519 if(!cryptotest_init("rsa"))
521 ret = rsa_main(0,NULL);
526 if(ret==1&&errno==ENOMEM)
534 TInt Ccrypto_test::ShaTest( CStifItemParser& /*aItem */)
538 if(!cryptotest_init("sha"))
540 ret = sha_main(0,NULL);
545 if(ret==1&&errno==ENOMEM)
553 TInt Ccrypto_test::Sha1Test( CStifItemParser& /*aItem */)
557 if(!cryptotest_init("sha1"))
559 ret = sha1_main(0,NULL);
564 if(ret==1&&errno==ENOMEM)
572 TInt Ccrypto_test::Sha256Test( CStifItemParser& /*aItem */)
576 if(!cryptotest_init("sha256"))
578 ret = sha256_main(0,NULL);
583 if(ret==1&&errno==ENOMEM)
591 TInt Ccrypto_test::Sha512Test( CStifItemParser& /*aItem */)
595 if(!cryptotest_init("sha512"))
597 ret = sha512_main(0,NULL);
602 if(ret==1&&errno==ENOMEM)
611 // -----------------------------------------------------------------------------
612 // Ccrypto_test::?member_function
613 // ?implementation_description
614 // (other items were commented in a header).
615 // -----------------------------------------------------------------------------
618 TInt Ccrypto_test::?member_function(
627 // ========================== OTHER EXPORTED FUNCTIONS =========================