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
37 #include <StifLogger.h>
38 #include <TestScripterInternal.h>
39 #include <StifTestModule.h>
43 //const ?type ?constant_var = ?constant;
46 //#define ?macro ?macro_def
48 _LIT( Kcrypto_testLogPath, "\\logs\\testframework\\crypto_test\\" );
50 _LIT( Kcrypto_testLogFile, "crypto_test.txt" );
52 // FUNCTION PROTOTYPES
53 //?type ?function_name(?arg_list);
55 // FORWARD DECLARATIONS
56 //class ?FORWARD_CLASSNAME;
61 //typedef ?declaration
67 * Ccrypto_test test class for STIF Test Framework TestScripter.
68 * ?other_description_lines
71 * @since ?Series60_version
73 NONSHARABLE_CLASS(Ccrypto_test) : public CScriptBase
75 public: // Constructors and destructor
78 * Two-phased constructor.
80 static Ccrypto_test* NewL( CTestModuleIf& aTestModuleIf );
85 virtual ~Ccrypto_test();
87 public: // New functions
90 * ?member_description.
91 * @since ?Series60_version
92 * @param ?arg1 ?description
93 * @return ?description
95 //?type ?member_function( ?type ?arg1 );
97 public: // Functions from base classes
100 * From CScriptBase Runs a script line.
101 * @since ?Series60_version
102 * @param aItem Script line containing method name and parameters
103 * @return Symbian OS error code
105 virtual TInt RunMethodL( CStifItemParser& aItem );
107 protected: // New functions
110 * ?member_description.
111 * @since ?Series60_version
112 * @param ?arg1 ?description
113 * @return ?description
115 //?type ?member_function( ?type ?arg1 );
117 protected: // Functions from base classes
120 * From ?base_class ?member_description
122 //?type ?member_function();
127 * C++ default constructor.
129 Ccrypto_test( CTestModuleIf& aTestModuleIf );
132 * By default Symbian 2nd phase constructor is private.
136 // Prohibit copy constructor if not deriving from CBase.
137 // ?classname( const ?classname& );
138 // Prohibit assigment operator if not deriving from CBase.
139 // ?classname& operator=( const ?classname& );
142 * Frees all resources allocated from test methods.
143 * @since ?Series60_version
148 * Test methods are listed below.
152 * Example test method.
153 * @since ?Series60_version
154 * @param aItem Script line containing parameters.
155 * @return Symbian OS error code.
157 virtual TInt BnTest( CStifItemParser& aItem );
158 virtual TInt DesTest( CStifItemParser& aItem );
159 virtual TInt DhTest( CStifItemParser& aItem );
160 virtual TInt DsaTest( CStifItemParser& aItem );
161 virtual TInt EngineTest( CStifItemParser& aItem );
162 virtual TInt EvpTest( CStifItemParser& aItem );
163 virtual TInt ExpTest( CStifItemParser& aItem );
164 virtual TInt HmacTest( CStifItemParser& aItem );
165 virtual TInt Md2Test( CStifItemParser& aItem );
166 virtual TInt Md5Test( CStifItemParser& aItem );
167 virtual TInt RandTest( CStifItemParser& aItem );
168 virtual TInt Rc2Test( CStifItemParser& aItem );
169 virtual TInt Rc4Test( CStifItemParser& aItem );
170 virtual TInt RsaTest( CStifItemParser& aItem );
171 virtual TInt ShaTest( CStifItemParser& aItem );
172 virtual TInt Sha1Test( CStifItemParser& aItem );
173 virtual TInt Sha256Test( CStifItemParser& aItem );
174 virtual TInt Sha512Test( CStifItemParser& aItem );
177 // ?one_line_short_description_of_data
181 // ?one_line_short_description_of_data
186 // ?one_line_short_description_of_data
189 // Reserved pointer for future extension
192 public: // Friend classes
193 //?friend_class_declaration;
194 protected: // Friend classes
195 //?friend_class_declaration;
196 private: // Friend classes
197 //?friend_class_declaration;
201 #endif // CRYPTO_TEST_H