os/ossrv/ssl/tsrc/crypto_test/src/crypto_test.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 <Stiftestinterface.h>
sl@0
    35
#include "crypto_test.h"
sl@0
    36
sl@0
    37
// EXTERNAL DATA STRUCTURES
sl@0
    38
//extern  ?external_data;
sl@0
    39
sl@0
    40
// EXTERNAL FUNCTION PROTOTYPES  
sl@0
    41
//extern ?external_function( ?arg_type,?arg_type );
sl@0
    42
sl@0
    43
// CONSTANTS
sl@0
    44
//const ?type ?constant_var = ?constant;
sl@0
    45
sl@0
    46
// MACROS
sl@0
    47
//#define ?macro ?macro_def
sl@0
    48
sl@0
    49
// LOCAL CONSTANTS AND MACROS
sl@0
    50
//const ?type ?constant_var = ?constant;
sl@0
    51
//#define ?macro_name ?macro_def
sl@0
    52
sl@0
    53
// MODULE DATA STRUCTURES
sl@0
    54
//enum ?declaration
sl@0
    55
//typedef ?declaration
sl@0
    56
sl@0
    57
// LOCAL FUNCTION PROTOTYPES
sl@0
    58
//?type ?function_name( ?arg_type, ?arg_type );
sl@0
    59
sl@0
    60
// FORWARD DECLARATIONS
sl@0
    61
//class ?FORWARD_CLASSNAME;
sl@0
    62
sl@0
    63
// ============================= LOCAL FUNCTIONS ===============================
sl@0
    64
sl@0
    65
// -----------------------------------------------------------------------------
sl@0
    66
// ?function_name ?description.
sl@0
    67
// ?description
sl@0
    68
// Returns: ?value_1: ?description
sl@0
    69
//          ?value_n: ?description_line1
sl@0
    70
//                    ?description_line2
sl@0
    71
// -----------------------------------------------------------------------------
sl@0
    72
//
sl@0
    73
/*
sl@0
    74
?type ?function_name(
sl@0
    75
    ?arg_type arg,  // ?description
sl@0
    76
    ?arg_type arg)  // ?description
sl@0
    77
    {
sl@0
    78
sl@0
    79
    ?code  // ?comment
sl@0
    80
sl@0
    81
    // ?comment
sl@0
    82
    ?code
sl@0
    83
    }
sl@0
    84
*/
sl@0
    85
sl@0
    86
// ============================ MEMBER FUNCTIONS ===============================
sl@0
    87
sl@0
    88
// -----------------------------------------------------------------------------
sl@0
    89
// Ccrypto_test::Ccrypto_test
sl@0
    90
// C++ default constructor can NOT contain any code, that
sl@0
    91
// might leave.
sl@0
    92
// -----------------------------------------------------------------------------
sl@0
    93
//
sl@0
    94
Ccrypto_test::Ccrypto_test( 
sl@0
    95
    CTestModuleIf& aTestModuleIf ):
sl@0
    96
        CScriptBase( aTestModuleIf )
sl@0
    97
    {
sl@0
    98
    }
sl@0
    99
sl@0
   100
// -----------------------------------------------------------------------------
sl@0
   101
// Ccrypto_test::ConstructL
sl@0
   102
// Symbian 2nd phase constructor can leave.
sl@0
   103
// -----------------------------------------------------------------------------
sl@0
   104
//
sl@0
   105
void Ccrypto_test::ConstructL()
sl@0
   106
    {
sl@0
   107
    iLog = CStifLogger::NewL( Kcrypto_testLogPath, 
sl@0
   108
                          Kcrypto_testLogFile,
sl@0
   109
                          CStifLogger::ETxt,
sl@0
   110
                          CStifLogger::EFile,
sl@0
   111
                          EFalse );
sl@0
   112
sl@0
   113
    }
sl@0
   114
sl@0
   115
// -----------------------------------------------------------------------------
sl@0
   116
// Ccrypto_test::NewL
sl@0
   117
// Two-phased constructor.
sl@0
   118
// -----------------------------------------------------------------------------
sl@0
   119
//
sl@0
   120
Ccrypto_test* Ccrypto_test::NewL( 
sl@0
   121
    CTestModuleIf& aTestModuleIf )
sl@0
   122
    {
sl@0
   123
    Ccrypto_test* self = new (ELeave) Ccrypto_test( aTestModuleIf );
sl@0
   124
sl@0
   125
    CleanupStack::PushL( self );
sl@0
   126
    self->ConstructL();
sl@0
   127
    CleanupStack::Pop();
sl@0
   128
sl@0
   129
    return self;
sl@0
   130
sl@0
   131
    }
sl@0
   132
sl@0
   133
// Destructor
sl@0
   134
Ccrypto_test::~Ccrypto_test()
sl@0
   135
    { 
sl@0
   136
sl@0
   137
    // Delete resources allocated from test methods
sl@0
   138
    Delete();
sl@0
   139
sl@0
   140
    // Delete logger
sl@0
   141
    delete iLog; 
sl@0
   142
sl@0
   143
    }
sl@0
   144
sl@0
   145
// ========================== OTHER EXPORTED FUNCTIONS =========================
sl@0
   146
sl@0
   147
// -----------------------------------------------------------------------------
sl@0
   148
// LibEntryL is a polymorphic Dll entry point.
sl@0
   149
// Returns: CScriptBase: New CScriptBase derived object
sl@0
   150
// -----------------------------------------------------------------------------
sl@0
   151
//
sl@0
   152
EXPORT_C CScriptBase* LibEntryL( 
sl@0
   153
    CTestModuleIf& aTestModuleIf ) // Backpointer to STIF Test Framework
sl@0
   154
    {
sl@0
   155
sl@0
   156
    return ( CScriptBase* ) Ccrypto_test::NewL( aTestModuleIf );
sl@0
   157
sl@0
   158
    }
sl@0
   159
sl@0
   160
// -----------------------------------------------------------------------------
sl@0
   161
// E32Dll is a DLL entry point function.
sl@0
   162
// Returns: KErrNone
sl@0
   163
// -----------------------------------------------------------------------------
sl@0
   164
//
sl@0
   165
#ifndef EKA2 // Hide Dll entry point to EKA2
sl@0
   166
GLDEF_C TInt E32Dll(
sl@0
   167
    TDllReason /*aReason*/) // Reason code
sl@0
   168
    {
sl@0
   169
    return(KErrNone);
sl@0
   170
sl@0
   171
    }
sl@0
   172
#endif // EKA2
sl@0
   173
sl@0
   174
//  End of File