sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of the License "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
* Example CTestStep derived implementation
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*/
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
/**
|
sl@0
|
21 |
@file
|
sl@0
|
22 |
@internalTechnology
|
sl@0
|
23 |
*/
|
sl@0
|
24 |
#include "hmacbasichashofdatastep.h"
|
sl@0
|
25 |
|
sl@0
|
26 |
#include <cryptospi/cryptohashapi.h>
|
sl@0
|
27 |
#include <cryptospi/keys.h>
|
sl@0
|
28 |
#include <cryptospi/plugincharacteristics.h>
|
sl@0
|
29 |
|
sl@0
|
30 |
using namespace CryptoSpi;
|
sl@0
|
31 |
|
sl@0
|
32 |
CHmacBasicHashOfDataStep::~CHmacBasicHashOfDataStep()
|
sl@0
|
33 |
{
|
sl@0
|
34 |
}
|
sl@0
|
35 |
|
sl@0
|
36 |
|
sl@0
|
37 |
CHmacBasicHashOfDataStep::CHmacBasicHashOfDataStep()
|
sl@0
|
38 |
{
|
sl@0
|
39 |
SetTestStepName(KHmacBasicHashOfDataStep);
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
|
sl@0
|
43 |
TVerdict CHmacBasicHashOfDataStep::doTestStepPreambleL()
|
sl@0
|
44 |
{
|
sl@0
|
45 |
SetTestStepResult(EPass);
|
sl@0
|
46 |
return TestStepResult();
|
sl@0
|
47 |
}
|
sl@0
|
48 |
|
sl@0
|
49 |
|
sl@0
|
50 |
TVerdict CHmacBasicHashOfDataStep::doTestStepL()
|
sl@0
|
51 |
{
|
sl@0
|
52 |
if (TestStepResult()==EPass)
|
sl@0
|
53 |
{
|
sl@0
|
54 |
|
sl@0
|
55 |
//Assume faliure, unless all is successful
|
sl@0
|
56 |
SetTestStepResult(EFail);
|
sl@0
|
57 |
|
sl@0
|
58 |
INFO_PRINTF1(_L("*** Hmac - Basic Hash of Data ***"));
|
sl@0
|
59 |
INFO_PRINTF2(_L("HEAP CELLS: %d"), User::CountAllocCells());
|
sl@0
|
60 |
|
sl@0
|
61 |
TVariantPtrC algorithmUid;
|
sl@0
|
62 |
TVariantPtrC operationModeUid;
|
sl@0
|
63 |
TPtrC sourcePath;
|
sl@0
|
64 |
TPtrC expectedHash;
|
sl@0
|
65 |
TPtrC encryptKey;
|
sl@0
|
66 |
TVariantPtrC keyType;
|
sl@0
|
67 |
|
sl@0
|
68 |
//Extract the Test Case ID parameter from the specified INI file
|
sl@0
|
69 |
if(!GetStringFromConfig(ConfigSection(),KConfigAlgorithmUid,algorithmUid) ||
|
sl@0
|
70 |
!GetStringFromConfig(ConfigSection(),KConfigOperationMode,operationModeUid) ||
|
sl@0
|
71 |
!GetStringFromConfig(ConfigSection(),KConfigSourcePath,sourcePath) ||
|
sl@0
|
72 |
!GetStringFromConfig(ConfigSection(),KConfigExHashHmacValue,expectedHash)||
|
sl@0
|
73 |
!GetStringFromConfig(ConfigSection(),KConfigEncryptKey,encryptKey) ||
|
sl@0
|
74 |
!GetStringFromConfig(ConfigSection(),KConfigEncryptKeyType,keyType))
|
sl@0
|
75 |
{
|
sl@0
|
76 |
ERR_PRINTF1(_L("** Error: Failed to Load Configuration Parameters **"));
|
sl@0
|
77 |
SetTestStepResult(EFail);
|
sl@0
|
78 |
}
|
sl@0
|
79 |
else
|
sl@0
|
80 |
{
|
sl@0
|
81 |
//Create a pointer for the Hash + Key (Hmac) Implementation Object
|
sl@0
|
82 |
CHash* hmacImpl = NULL;
|
sl@0
|
83 |
|
sl@0
|
84 |
//Convert encryption key to an 8 Bit Descriptor
|
sl@0
|
85 |
HBufC8* keyStr = HBufC8::NewLC(encryptKey.Length());
|
sl@0
|
86 |
TPtr8 keyStrPtr = keyStr->Des();
|
sl@0
|
87 |
|
sl@0
|
88 |
keyStrPtr.Copy(encryptKey);
|
sl@0
|
89 |
|
sl@0
|
90 |
//Create an new CryptoParams object to encapsulate the key type and secret key string
|
sl@0
|
91 |
CCryptoParams* keyParams = CCryptoParams::NewL();
|
sl@0
|
92 |
CleanupStack::PushL(keyParams);
|
sl@0
|
93 |
keyParams->AddL(*keyStr,keyType);
|
sl@0
|
94 |
|
sl@0
|
95 |
//Create Key Object
|
sl@0
|
96 |
TKeyProperty keyProperty;
|
sl@0
|
97 |
CKey* key=CKey::NewL(keyProperty,*keyParams);
|
sl@0
|
98 |
CleanupStack::PushL(key);
|
sl@0
|
99 |
|
sl@0
|
100 |
//Retrieve a Hmac Factory Object
|
sl@0
|
101 |
TRAPD(err,CHashFactory::CreateHashL(hmacImpl,
|
sl@0
|
102 |
algorithmUid,
|
sl@0
|
103 |
operationModeUid,
|
sl@0
|
104 |
key,
|
sl@0
|
105 |
NULL));
|
sl@0
|
106 |
|
sl@0
|
107 |
if(hmacImpl && (err == KErrNone))
|
sl@0
|
108 |
{
|
sl@0
|
109 |
//Push the Hmac Implementation Object onto the Cleanup Stack
|
sl@0
|
110 |
CleanupStack::PushL(hmacImpl);
|
sl@0
|
111 |
|
sl@0
|
112 |
RFs fsSession;
|
sl@0
|
113 |
|
sl@0
|
114 |
//Create a connection to the file server
|
sl@0
|
115 |
err = fsSession.Connect();
|
sl@0
|
116 |
|
sl@0
|
117 |
if(err != KErrNone)
|
sl@0
|
118 |
{
|
sl@0
|
119 |
ERR_PRINTF2(_L("*** Error: File Server Connection - %d ***"), err);
|
sl@0
|
120 |
SetTestStepResult(EFail);
|
sl@0
|
121 |
}
|
sl@0
|
122 |
else
|
sl@0
|
123 |
{
|
sl@0
|
124 |
RFile sourceFile;
|
sl@0
|
125 |
CleanupClosePushL(sourceFile);
|
sl@0
|
126 |
|
sl@0
|
127 |
//Open the specified source file
|
sl@0
|
128 |
err = sourceFile.Open(fsSession,sourcePath, EFileRead);
|
sl@0
|
129 |
|
sl@0
|
130 |
if(err != KErrNone)
|
sl@0
|
131 |
{
|
sl@0
|
132 |
ERR_PRINTF2(_L("*** Error: Opening Source File - %d ***"), err);
|
sl@0
|
133 |
SetTestStepResult(EFail);
|
sl@0
|
134 |
}
|
sl@0
|
135 |
else
|
sl@0
|
136 |
{
|
sl@0
|
137 |
TInt sourceLength = 0;
|
sl@0
|
138 |
User::LeaveIfError(sourceFile.Size(sourceLength));
|
sl@0
|
139 |
|
sl@0
|
140 |
//Create a heap based descriptor to store the data
|
sl@0
|
141 |
HBufC8* sourceData = HBufC8::NewL(sourceLength);
|
sl@0
|
142 |
CleanupStack::PushL(sourceData);
|
sl@0
|
143 |
TPtr8 sourcePtr = sourceData->Des();
|
sl@0
|
144 |
|
sl@0
|
145 |
sourceFile.Read(sourcePtr);
|
sl@0
|
146 |
|
sl@0
|
147 |
if(sourcePtr.Length() != sourceLength)
|
sl@0
|
148 |
{
|
sl@0
|
149 |
ERR_PRINTF1(_L("*** Error: Reading Source File ***"));
|
sl@0
|
150 |
SetTestStepResult(EFail);
|
sl@0
|
151 |
}
|
sl@0
|
152 |
else
|
sl@0
|
153 |
{
|
sl@0
|
154 |
//Create a NULL TCharacteristics pointer
|
sl@0
|
155 |
const TCharacteristics* charsPtr(NULL);
|
sl@0
|
156 |
|
sl@0
|
157 |
//Retrieve the characteristics for the hash implementation object
|
sl@0
|
158 |
TRAP_LOG(err, hmacImpl->GetCharacteristicsL(charsPtr));
|
sl@0
|
159 |
|
sl@0
|
160 |
//Static cast the characteristics to type THashCharacteristics
|
sl@0
|
161 |
const THashCharacteristics* hashCharsPtr = static_cast<const THashCharacteristics*>(charsPtr);
|
sl@0
|
162 |
|
sl@0
|
163 |
//The hash output size is returned in Bits, divide by 8 to get the Byte size
|
sl@0
|
164 |
TInt hashSize = hashCharsPtr->iOutputSize/8;
|
sl@0
|
165 |
|
sl@0
|
166 |
//Retrieve the final 8bit hash value and convert to 16bit
|
sl@0
|
167 |
HBufC* hashData = HBufC::NewLC(hashSize);
|
sl@0
|
168 |
TPtr hashPtr = hashData->Des();
|
sl@0
|
169 |
|
sl@0
|
170 |
hashPtr.Copy(hmacImpl->Hash(*sourceData));
|
sl@0
|
171 |
|
sl@0
|
172 |
//Take the 16bit descriptor and convert the string to hexadecimal
|
sl@0
|
173 |
TVariantPtrC convertHash;
|
sl@0
|
174 |
convertHash.Set(hashPtr);
|
sl@0
|
175 |
HBufC* hmacResult = convertHash.HexStringLC();
|
sl@0
|
176 |
|
sl@0
|
177 |
INFO_PRINTF2(_L("*** Hashed Data: %S ***"),&*hmacResult);
|
sl@0
|
178 |
INFO_PRINTF2(_L("*** Expected Hash: %S ***"),&expectedHash);
|
sl@0
|
179 |
|
sl@0
|
180 |
//If the returned hash value matches the expected hash, Pass the test
|
sl@0
|
181 |
if(*hmacResult == expectedHash)
|
sl@0
|
182 |
{
|
sl@0
|
183 |
INFO_PRINTF1(_L("*** Hmac - Basic Hash of Data : PASS ***"));
|
sl@0
|
184 |
SetTestStepResult(EPass);
|
sl@0
|
185 |
}
|
sl@0
|
186 |
else
|
sl@0
|
187 |
{
|
sl@0
|
188 |
ERR_PRINTF2(_L("*** FAIL: Hashed and Expected Value Mismatch ***"), err);
|
sl@0
|
189 |
SetTestStepResult(EFail);
|
sl@0
|
190 |
}
|
sl@0
|
191 |
|
sl@0
|
192 |
CleanupStack::PopAndDestroy(hmacResult);
|
sl@0
|
193 |
CleanupStack::PopAndDestroy(hashData);
|
sl@0
|
194 |
}
|
sl@0
|
195 |
|
sl@0
|
196 |
|
sl@0
|
197 |
CleanupStack::PopAndDestroy(sourceData);
|
sl@0
|
198 |
}
|
sl@0
|
199 |
|
sl@0
|
200 |
//Cleanup the Source RFile
|
sl@0
|
201 |
CleanupStack::PopAndDestroy();
|
sl@0
|
202 |
}
|
sl@0
|
203 |
|
sl@0
|
204 |
fsSession.Close();
|
sl@0
|
205 |
|
sl@0
|
206 |
CleanupStack::PopAndDestroy(hmacImpl);
|
sl@0
|
207 |
}
|
sl@0
|
208 |
else
|
sl@0
|
209 |
{
|
sl@0
|
210 |
ERR_PRINTF2(_L("*** FAIL: Failed to Create Hmac Object - %d ***"), err);
|
sl@0
|
211 |
SetTestStepResult(EFail);
|
sl@0
|
212 |
}
|
sl@0
|
213 |
|
sl@0
|
214 |
CleanupStack::PopAndDestroy(key);
|
sl@0
|
215 |
CleanupStack::PopAndDestroy(keyParams);
|
sl@0
|
216 |
CleanupStack::PopAndDestroy(keyStr);
|
sl@0
|
217 |
}
|
sl@0
|
218 |
}
|
sl@0
|
219 |
|
sl@0
|
220 |
INFO_PRINTF2(_L("HEAP CELLS: %d"), User::CountAllocCells());
|
sl@0
|
221 |
|
sl@0
|
222 |
return TestStepResult();
|
sl@0
|
223 |
}
|
sl@0
|
224 |
|
sl@0
|
225 |
|
sl@0
|
226 |
TVerdict CHmacBasicHashOfDataStep::doTestStepPostambleL()
|
sl@0
|
227 |
{
|
sl@0
|
228 |
|
sl@0
|
229 |
return TestStepResult();
|
sl@0
|
230 |
}
|