os/ossrv/ssl/tsrc/crypto_test/src/crypto_testBlocks.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
sl@0
     3
sl@0
     4
* Redistribution and use in source and binary forms, with or without 
sl@0
     5
* modification, are permitted provided that the following conditions are met:
sl@0
     6
sl@0
     7
* Redistributions of source code must retain the above copyright notice, this 
sl@0
     8
* list of conditions and the following disclaimer.
sl@0
     9
* Redistributions in binary form must reproduce the above copyright notice, 
sl@0
    10
* this list of conditions and the following disclaimer in the documentation 
sl@0
    11
* and/or other materials provided with the distribution.
sl@0
    12
* Neither the name of Nokia Corporation nor the names of its contributors 
sl@0
    13
* may be used to endorse or promote products derived from this software 
sl@0
    14
* without specific prior written permission.
sl@0
    15
sl@0
    16
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
sl@0
    17
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
sl@0
    18
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
sl@0
    19
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 
sl@0
    20
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
sl@0
    21
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
sl@0
    22
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
sl@0
    23
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
sl@0
    24
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
sl@0
    25
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
sl@0
    26
*
sl@0
    27
* Description:  ?Description
sl@0
    28
*
sl@0
    29
*/
sl@0
    30
sl@0
    31
sl@0
    32
sl@0
    33
// INCLUDE FILES
sl@0
    34
#include <e32svr.h>
sl@0
    35
#include <StifParser.h>
sl@0
    36
#include <Stiftestinterface.h>
sl@0
    37
#include "crypto_test.h"
sl@0
    38
#include "tcrypto_test.h"
sl@0
    39
#include <stdio.h>
sl@0
    40
#include <string.h>
sl@0
    41
#include  <stdlib.h>
sl@0
    42
#include <errno.h>
sl@0
    43
// EXTERNAL DATA STRUCTURES
sl@0
    44
//extern  ?external_data;
sl@0
    45
sl@0
    46
// EXTERNAL FUNCTION PROTOTYPES  
sl@0
    47
//extern ?external_function( ?arg_type,?arg_type );
sl@0
    48
sl@0
    49
// CONSTANTS
sl@0
    50
//const ?type ?constant_var = ?constant;
sl@0
    51
sl@0
    52
// MACROS
sl@0
    53
//#define ?macro ?macro_def
sl@0
    54
sl@0
    55
// LOCAL CONSTANTS AND MACROS
sl@0
    56
//const ?type ?constant_var = ?constant;
sl@0
    57
//#define ?macro_name ?macro_def
sl@0
    58
sl@0
    59
// MODULE DATA STRUCTURES
sl@0
    60
//enum ?declaration
sl@0
    61
//typedef ?declaration
sl@0
    62
sl@0
    63
// LOCAL FUNCTION PROTOTYPES
sl@0
    64
//?type ?function_name( ?arg_type, ?arg_type );
sl@0
    65
sl@0
    66
// FORWARD DECLARATIONS
sl@0
    67
//class ?FORWARD_CLASSNAME;
sl@0
    68
sl@0
    69
// ============================= LOCAL FUNCTIONS ===============================
sl@0
    70
sl@0
    71
// -----------------------------------------------------------------------------
sl@0
    72
// ?function_name ?description.
sl@0
    73
// ?description
sl@0
    74
// Returns: ?value_1: ?description
sl@0
    75
//          ?value_n: ?description_line1
sl@0
    76
//                    ?description_line2
sl@0
    77
// -----------------------------------------------------------------------------
sl@0
    78
//
sl@0
    79
/*
sl@0
    80
?type ?function_name(
sl@0
    81
    ?arg_type arg,  // ?description
sl@0
    82
    ?arg_type arg)  // ?description
sl@0
    83
    {
sl@0
    84
sl@0
    85
    ?code  // ?comment
sl@0
    86
sl@0
    87
    // ?comment
sl@0
    88
    ?code
sl@0
    89
    }
sl@0
    90
*/
sl@0
    91
sl@0
    92
// ============================ MEMBER FUNCTIONS ===============================
sl@0
    93
sl@0
    94
// -----------------------------------------------------------------------------
sl@0
    95
// Ccrypto_test::Delete
sl@0
    96
// Delete here all resources allocated and opened from test methods. 
sl@0
    97
// Called from destructor. 
sl@0
    98
// -----------------------------------------------------------------------------
sl@0
    99
//
sl@0
   100
void Ccrypto_test::Delete() 
sl@0
   101
    {
sl@0
   102
sl@0
   103
    }
sl@0
   104
sl@0
   105
// -----------------------------------------------------------------------------
sl@0
   106
// Ccrypto_test::RunMethodL
sl@0
   107
// Run specified method. Contains also table of test mothods and their names.
sl@0
   108
// -----------------------------------------------------------------------------
sl@0
   109
//
sl@0
   110
TInt Ccrypto_test::RunMethodL( 
sl@0
   111
    CStifItemParser& aItem ) 
sl@0
   112
    {
sl@0
   113
sl@0
   114
    static TStifFunctionInfo const KFunctions[] =
sl@0
   115
        {  
sl@0
   116
        // Copy this line for every implemented function.
sl@0
   117
        // First string is the function name used in TestScripter script file.
sl@0
   118
        // Second is the actual implementation member function. 
sl@0
   119
        ENTRY( "BNTest", Ccrypto_test::BnTest ),
sl@0
   120
        ENTRY( "DESTest", Ccrypto_test::DesTest ),
sl@0
   121
        ENTRY( "DHTest", Ccrypto_test::DhTest ),
sl@0
   122
        ENTRY( "DSATest", Ccrypto_test::DsaTest ),
sl@0
   123
        ENTRY( "ENGINETest", Ccrypto_test::EngineTest ),
sl@0
   124
        ENTRY( "EVPTest", Ccrypto_test::EvpTest ),
sl@0
   125
        ENTRY( "EXPTest", Ccrypto_test::ExpTest ),
sl@0
   126
        ENTRY( "HMACTest", Ccrypto_test::HmacTest ),
sl@0
   127
        ENTRY( "MD2Test", Ccrypto_test::Md2Test ),
sl@0
   128
        ENTRY( "MD5Test", Ccrypto_test::Md5Test ),
sl@0
   129
        ENTRY( "RANDTest", Ccrypto_test::RandTest ),
sl@0
   130
        ENTRY( "RC2Test", Ccrypto_test::Rc2Test ),
sl@0
   131
        ENTRY( "RC4Test", Ccrypto_test::Rc4Test ),
sl@0
   132
        ENTRY( "RSATest", Ccrypto_test::RsaTest ),
sl@0
   133
        ENTRY( "SHATest", Ccrypto_test::ShaTest ),
sl@0
   134
        ENTRY( "SHA1Test", Ccrypto_test::Sha1Test ),
sl@0
   135
		ENTRY( "SHA256Test", Ccrypto_test::Sha256Test ),
sl@0
   136
		ENTRY( "SHA512Test", Ccrypto_test::Sha512Test ),
sl@0
   137
sl@0
   138
        };
sl@0
   139
sl@0
   140
    const TInt count = sizeof( KFunctions ) / 
sl@0
   141
                        sizeof( TStifFunctionInfo );
sl@0
   142
sl@0
   143
    return RunInternalL( KFunctions, count, aItem );
sl@0
   144
sl@0
   145
    }
sl@0
   146
    
sl@0
   147
#ifdef __cplusplus
sl@0
   148
extern "C"
sl@0
   149
{
sl@0
   150
#endif	
sl@0
   151
    
sl@0
   152
FILE *fp_stdout=NULL;
sl@0
   153
FILE *fp_stderr=NULL;
sl@0
   154
sl@0
   155
#ifdef __cplusplus
sl@0
   156
}
sl@0
   157
#endif
sl@0
   158
int cryptotest_init(char *mod)
sl@0
   159
{
sl@0
   160
    char str[200];
sl@0
   161
    int len=0;
sl@0
   162
    if(!mod)
sl@0
   163
    return 1;
sl@0
   164
    len=strlen(LOG_STDOUT);
sl@0
   165
    strcpy(str,LOG_STDOUT);
sl@0
   166
    strcat(str,"_");
sl@0
   167
    strcat(str,mod);
sl@0
   168
    len+=strlen(mod);
sl@0
   169
    str[len+1]='\0';
sl@0
   170
	fp_stdout = fopen(str,"a+b");
sl@0
   171
	if(!fp_stdout)
sl@0
   172
	return 1;
sl@0
   173
	fp_stderr=fp_stdout;
sl@0
   174
	return 0;
sl@0
   175
}
sl@0
   176
sl@0
   177
void cryptotest_deinit(void)
sl@0
   178
{
sl@0
   179
    fclose(fp_stdout);
sl@0
   180
    fp_stderr=NULL;
sl@0
   181
    fp_stdout=NULL;
sl@0
   182
}
sl@0
   183
char ** MakeArgs(CStifItemParser& aItem,int * argc)
sl@0
   184
{
sl@0
   185
	char *ini_cmd[256];
sl@0
   186
	char **cmd_line;
sl@0
   187
	   
sl@0
   188
	TInt len=0;
sl@0
   189
	TPtrC string;
sl@0
   190
    TBuf8<50> buf1;
sl@0
   191
	char* argument;
sl@0
   192
	int cnt=0;
sl@0
   193
	int i;
sl@0
   194
	
sl@0
   195
	//parse through the parameters of cfg to find the number and strings of cmd line
sl@0
   196
		
sl@0
   197
	while(aItem.GetNextString(string)!=-1)
sl@0
   198
	{
sl@0
   199
		buf1.Copy(string);
sl@0
   200
		argument=(char *)buf1.Ptr();
sl@0
   201
		len=buf1.Length();
sl@0
   202
		argument[len]='\0';
sl@0
   203
		
sl@0
   204
		ini_cmd[cnt]=(char *)malloc(sizeof(char)*len+1);
sl@0
   205
		if(ini_cmd[cnt]==NULL)
sl@0
   206
		{
sl@0
   207
			for(i=0;i<cnt;i++)
sl@0
   208
			{
sl@0
   209
				if(ini_cmd[i])
sl@0
   210
			  free(ini_cmd[i]);
sl@0
   211
		  }
sl@0
   212
			return NULL;
sl@0
   213
		}	
sl@0
   214
		strcpy(ini_cmd[cnt],(const char *)argument);
sl@0
   215
		
sl@0
   216
		cnt++;
sl@0
   217
	}
sl@0
   218
	
sl@0
   219
	//allocate memory for the command line ragged array
sl@0
   220
	
sl@0
   221
	cmd_line=(char **)malloc(cnt*sizeof(char *));
sl@0
   222
	if(cmd_line==NULL)
sl@0
   223
	{
sl@0
   224
		for(i=0;i<cnt;i++)
sl@0
   225
  	   {
sl@0
   226
	  	if(ini_cmd[i])
sl@0
   227
		  free(ini_cmd[i]);
sl@0
   228
	   }
sl@0
   229
    return NULL;
sl@0
   230
	}	
sl@0
   231
	
sl@0
   232
	//initialize the array
sl@0
   233
	
sl@0
   234
	for(i=0;i<cnt;i++) cmd_line[i]=ini_cmd[i];
sl@0
   235
	
sl@0
   236
	//initialize argc
sl@0
   237
	
sl@0
   238
	*argc=cnt;
sl@0
   239
	
sl@0
   240
	return cmd_line;
sl@0
   241
	
sl@0
   242
}
sl@0
   243
//-----------------------------------------------------------------------------
sl@0
   244
//function function for destroying argv
sl@0
   245
//-----------------------------------------------------------------------------
sl@0
   246
void DeleteArgs(char ** cmd_line,int argc)
sl@0
   247
{
sl@0
   248
	int i;
sl@0
   249
	for(i=0;i<argc;i++) free(cmd_line[i]);
sl@0
   250
	
sl@0
   251
	free(cmd_line);
sl@0
   252
}
sl@0
   253
sl@0
   254
sl@0
   255
// -----------------------------------------------------------------------------
sl@0
   256
// Ccrypto_test::ExampleL
sl@0
   257
// Example test method function.
sl@0
   258
// (other items were commented in a header).
sl@0
   259
// -----------------------------------------------------------------------------
sl@0
   260
//
sl@0
   261
sl@0
   262
sl@0
   263
TInt Ccrypto_test::BnTest( CStifItemParser&/* aItem*/ )
sl@0
   264
    {
sl@0
   265
    TInt ret=1;
sl@0
   266
    
sl@0
   267
    
sl@0
   268
    if(!cryptotest_init("bn"))
sl@0
   269
    {
sl@0
   270
     ret = bn_main(0,NULL);
sl@0
   271
     cryptotest_deinit();
sl@0
   272
sl@0
   273
    }
sl@0
   274
    if(ret==1&&errno==ENOMEM)
sl@0
   275
    {
sl@0
   276
    	return KErrNoMemory;
sl@0
   277
    }
sl@0
   278
    return ret;
sl@0
   279
sl@0
   280
    }
sl@0
   281
sl@0
   282
sl@0
   283
sl@0
   284
TInt Ccrypto_test::DesTest( CStifItemParser&/* aItem*/ )
sl@0
   285
    {
sl@0
   286
    TInt ret=1;
sl@0
   287
    
sl@0
   288
    
sl@0
   289
    if(!cryptotest_init("des"))
sl@0
   290
    {
sl@0
   291
    ret = des_main(0,NULL);
sl@0
   292
    cryptotest_deinit();
sl@0
   293
	
sl@0
   294
    }
sl@0
   295
    if(ret==1&&errno==ENOMEM)
sl@0
   296
    {
sl@0
   297
    	return KErrNoMemory;
sl@0
   298
    }
sl@0
   299
    return ret;
sl@0
   300
sl@0
   301
    return ret;
sl@0
   302
sl@0
   303
    }
sl@0
   304
    
sl@0
   305
    
sl@0
   306
TInt Ccrypto_test::DhTest( CStifItemParser&/* aItem*/ )
sl@0
   307
    {
sl@0
   308
    TInt ret=1;
sl@0
   309
    
sl@0
   310
      
sl@0
   311
    if(!cryptotest_init("dh"))
sl@0
   312
    {
sl@0
   313
    ret = dh_main(0,NULL);
sl@0
   314
    cryptotest_deinit();
sl@0
   315
    }
sl@0
   316
    if(ret==1&&errno==ENOMEM)
sl@0
   317
    {
sl@0
   318
    	return KErrNoMemory;
sl@0
   319
    }
sl@0
   320
    return ret;
sl@0
   321
sl@0
   322
    }    
sl@0
   323
    
sl@0
   324
TInt Ccrypto_test::DsaTest( CStifItemParser&/* aItem*/ )
sl@0
   325
    {
sl@0
   326
    TInt ret=1;
sl@0
   327
    if(!cryptotest_init("dsa"))
sl@0
   328
    {
sl@0
   329
    ret = dsa_main(0,NULL);
sl@0
   330
    cryptotest_deinit();
sl@0
   331
    
sl@0
   332
    }
sl@0
   333
    if(ret==1&&errno==ENOMEM)
sl@0
   334
    {
sl@0
   335
    	return KErrNoMemory;
sl@0
   336
    }
sl@0
   337
    return ret;
sl@0
   338
    
sl@0
   339
sl@0
   340
    }      
sl@0
   341
    
sl@0
   342
    
sl@0
   343
TInt Ccrypto_test::EngineTest( CStifItemParser&/* aItem*/ )
sl@0
   344
    {
sl@0
   345
    TInt ret=1;
sl@0
   346
    
sl@0
   347
    if(!cryptotest_init("eng"))
sl@0
   348
    {
sl@0
   349
    ret = engine_main(0,NULL);
sl@0
   350
    cryptotest_deinit();
sl@0
   351
    	
sl@0
   352
    }
sl@0
   353
    if(ret==1&&errno==ENOMEM)
sl@0
   354
    {
sl@0
   355
    	return KErrNoMemory;
sl@0
   356
    }
sl@0
   357
    return ret;
sl@0
   358
sl@0
   359
    }      
sl@0
   360
    
sl@0
   361
TInt Ccrypto_test::EvpTest( CStifItemParser& aItem )
sl@0
   362
    {
sl@0
   363
    TInt ret=1;
sl@0
   364
    int argc=0;
sl@0
   365
    char** argv=NULL;
sl@0
   366
sl@0
   367
    argv = MakeArgs(aItem,&argc);
sl@0
   368
    if(!argv)
sl@0
   369
    {
sl@0
   370
      return KErrNoMemory;    
sl@0
   371
    }	
sl@0
   372
    if(!cryptotest_init("evp"))
sl@0
   373
    {
sl@0
   374
    ret = evp_main(argc,argv);
sl@0
   375
    cryptotest_deinit();
sl@0
   376
    
sl@0
   377
    }
sl@0
   378
    DeleteArgs(argv,argc);
sl@0
   379
    if(ret==1&&errno==ENOMEM)
sl@0
   380
    {
sl@0
   381
    	return KErrNoMemory;
sl@0
   382
    }
sl@0
   383
    return ret;
sl@0
   384
    }     
sl@0
   385
    
sl@0
   386
    
sl@0
   387
    
sl@0
   388
TInt Ccrypto_test::ExpTest( CStifItemParser& /*aItem */)
sl@0
   389
    {
sl@0
   390
    TInt ret=1;
sl@0
   391
    
sl@0
   392
    if(!cryptotest_init("exp"))
sl@0
   393
    {
sl@0
   394
    ret = exp_main(0,NULL);
sl@0
   395
    cryptotest_deinit();
sl@0
   396
   
sl@0
   397
    }
sl@0
   398
   if(ret==1&&errno==ENOMEM)
sl@0
   399
    {
sl@0
   400
    	return KErrNoMemory;
sl@0
   401
    }
sl@0
   402
    return ret;
sl@0
   403
sl@0
   404
    }          
sl@0
   405
TInt Ccrypto_test::HmacTest( CStifItemParser& /*aItem */)
sl@0
   406
    {
sl@0
   407
    TInt ret=1;
sl@0
   408
    
sl@0
   409
    if(!cryptotest_init("hmac"))
sl@0
   410
    {
sl@0
   411
    ret = hmac_main(0,NULL);
sl@0
   412
    cryptotest_deinit();
sl@0
   413
    	
sl@0
   414
    }
sl@0
   415
    if(ret==1&&errno==ENOMEM)
sl@0
   416
    {
sl@0
   417
    	return KErrNoMemory;
sl@0
   418
    }
sl@0
   419
    return ret;
sl@0
   420
sl@0
   421
    }     
sl@0
   422
sl@0
   423
             
sl@0
   424
TInt Ccrypto_test::Md2Test( CStifItemParser& /*aItem */)
sl@0
   425
    {
sl@0
   426
    TInt ret=1;
sl@0
   427
    
sl@0
   428
    if(!cryptotest_init("md2"))
sl@0
   429
    {
sl@0
   430
    ret = md2_main(0,NULL);
sl@0
   431
    cryptotest_deinit();
sl@0
   432
    	
sl@0
   433
    }
sl@0
   434
    if(ret==1&&errno==ENOMEM)
sl@0
   435
    {
sl@0
   436
    	return KErrNoMemory;
sl@0
   437
    }
sl@0
   438
    return ret;
sl@0
   439
sl@0
   440
    }   
sl@0
   441
TInt Ccrypto_test::Md5Test( CStifItemParser& /*aItem */)
sl@0
   442
    {
sl@0
   443
    TInt ret=1;
sl@0
   444
sl@0
   445
    if(!cryptotest_init("md5"))
sl@0
   446
    {
sl@0
   447
    ret = md5_main(0,NULL);
sl@0
   448
    cryptotest_deinit();
sl@0
   449
    	
sl@0
   450
    }
sl@0
   451
    if(ret==1&&errno==ENOMEM)
sl@0
   452
    {
sl@0
   453
    	return KErrNoMemory;
sl@0
   454
    }
sl@0
   455
    return ret;
sl@0
   456
sl@0
   457
    }   
sl@0
   458
TInt Ccrypto_test::RandTest( CStifItemParser& /*aItem */)
sl@0
   459
    {
sl@0
   460
    TInt ret=1;
sl@0
   461
sl@0
   462
    if(!cryptotest_init("rand"))
sl@0
   463
    {
sl@0
   464
    ret = rand_main(0,NULL);
sl@0
   465
    cryptotest_deinit();
sl@0
   466
    	
sl@0
   467
    }
sl@0
   468
    if(ret==1&&errno==ENOMEM)
sl@0
   469
    {
sl@0
   470
    	return KErrNoMemory;
sl@0
   471
    }
sl@0
   472
    return ret;
sl@0
   473
sl@0
   474
    }      
sl@0
   475
    
sl@0
   476
    
sl@0
   477
TInt Ccrypto_test::Rc2Test( CStifItemParser& /*aItem */)
sl@0
   478
    {
sl@0
   479
    TInt ret=1;
sl@0
   480
sl@0
   481
    if(!cryptotest_init("rc2"))
sl@0
   482
    {
sl@0
   483
    ret = rc2_main(0,NULL);
sl@0
   484
    cryptotest_deinit();
sl@0
   485
    	
sl@0
   486
    }
sl@0
   487
sl@0
   488
    if(ret==1&&errno==ENOMEM)
sl@0
   489
    {
sl@0
   490
    	return KErrNoMemory;
sl@0
   491
    }
sl@0
   492
    return ret;
sl@0
   493
sl@0
   494
    }      
sl@0
   495
    
sl@0
   496
TInt Ccrypto_test::Rc4Test( CStifItemParser& /*aItem */)
sl@0
   497
    {
sl@0
   498
    TInt ret=1;
sl@0
   499
sl@0
   500
    if(!cryptotest_init("rc4"))
sl@0
   501
    {
sl@0
   502
    ret = rc4_main(0,NULL);
sl@0
   503
    cryptotest_deinit();
sl@0
   504
    	
sl@0
   505
    }
sl@0
   506
sl@0
   507
    if(ret==1&&errno==ENOMEM)
sl@0
   508
    {
sl@0
   509
    	return KErrNoMemory;
sl@0
   510
    }
sl@0
   511
    return ret;
sl@0
   512
sl@0
   513
    }     
sl@0
   514
sl@0
   515
TInt Ccrypto_test::RsaTest( CStifItemParser& /*aItem */)
sl@0
   516
    {
sl@0
   517
    TInt ret=1;
sl@0
   518
sl@0
   519
    if(!cryptotest_init("rsa"))
sl@0
   520
    {
sl@0
   521
    ret = rsa_main(0,NULL);
sl@0
   522
    cryptotest_deinit();
sl@0
   523
    	
sl@0
   524
    }
sl@0
   525
sl@0
   526
    if(ret==1&&errno==ENOMEM)
sl@0
   527
    {
sl@0
   528
    	return KErrNoMemory;
sl@0
   529
    }
sl@0
   530
    return ret;
sl@0
   531
sl@0
   532
    }      
sl@0
   533
    
sl@0
   534
TInt Ccrypto_test::ShaTest( CStifItemParser& /*aItem */)
sl@0
   535
    {
sl@0
   536
    TInt ret=1;
sl@0
   537
sl@0
   538
    if(!cryptotest_init("sha"))
sl@0
   539
    {
sl@0
   540
    ret = sha_main(0,NULL);
sl@0
   541
    cryptotest_deinit();
sl@0
   542
    	
sl@0
   543
    }
sl@0
   544
sl@0
   545
    if(ret==1&&errno==ENOMEM)
sl@0
   546
    {
sl@0
   547
    	return KErrNoMemory;
sl@0
   548
    }
sl@0
   549
    return ret;
sl@0
   550
sl@0
   551
    }     
sl@0
   552
sl@0
   553
TInt Ccrypto_test::Sha1Test( CStifItemParser& /*aItem */)
sl@0
   554
    {
sl@0
   555
    TInt ret=1;
sl@0
   556
sl@0
   557
    if(!cryptotest_init("sha1"))
sl@0
   558
    {
sl@0
   559
    ret = sha1_main(0,NULL);
sl@0
   560
    cryptotest_deinit();
sl@0
   561
    	
sl@0
   562
    }
sl@0
   563
sl@0
   564
    if(ret==1&&errno==ENOMEM)
sl@0
   565
    {
sl@0
   566
    	return KErrNoMemory;
sl@0
   567
    }
sl@0
   568
    return ret;
sl@0
   569
sl@0
   570
    }                                         
sl@0
   571
    
sl@0
   572
TInt Ccrypto_test::Sha256Test( CStifItemParser& /*aItem */)
sl@0
   573
    {
sl@0
   574
    TInt ret=1;
sl@0
   575
sl@0
   576
    if(!cryptotest_init("sha256"))
sl@0
   577
    {
sl@0
   578
    ret = sha256_main(0,NULL);
sl@0
   579
    cryptotest_deinit();
sl@0
   580
    	
sl@0
   581
    }
sl@0
   582
sl@0
   583
    if(ret==1&&errno==ENOMEM)
sl@0
   584
    {
sl@0
   585
    	return KErrNoMemory;
sl@0
   586
    }
sl@0
   587
    return ret;
sl@0
   588
sl@0
   589
    }       
sl@0
   590
    
sl@0
   591
TInt Ccrypto_test::Sha512Test( CStifItemParser& /*aItem */)
sl@0
   592
    {
sl@0
   593
    TInt ret=1;
sl@0
   594
sl@0
   595
    if(!cryptotest_init("sha512"))
sl@0
   596
    {
sl@0
   597
    ret = sha512_main(0,NULL);
sl@0
   598
    cryptotest_deinit();
sl@0
   599
    	
sl@0
   600
    }
sl@0
   601
sl@0
   602
    if(ret==1&&errno==ENOMEM)
sl@0
   603
    {
sl@0
   604
    	return KErrNoMemory;
sl@0
   605
    }
sl@0
   606
    return ret;
sl@0
   607
sl@0
   608
    }   
sl@0
   609
sl@0
   610
                                       
sl@0
   611
// -----------------------------------------------------------------------------
sl@0
   612
// Ccrypto_test::?member_function
sl@0
   613
// ?implementation_description
sl@0
   614
// (other items were commented in a header).
sl@0
   615
// -----------------------------------------------------------------------------
sl@0
   616
//
sl@0
   617
/*
sl@0
   618
TInt Ccrypto_test::?member_function(
sl@0
   619
   CItemParser& aItem )
sl@0
   620
   {
sl@0
   621
sl@0
   622
   ?code
sl@0
   623
sl@0
   624
   }
sl@0
   625
*/
sl@0
   626
sl@0
   627
// ========================== OTHER EXPORTED FUNCTIONS =========================
sl@0
   628
// None
sl@0
   629
sl@0
   630
//  End of File