First public contribution.
2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
22 // EXTERNAL FUNCTION PROTOTYPES
24 IMPORT_C char *crypt(const char *key, const char *salt);
25 IMPORT_C void setkey(const char *key);
26 IMPORT_C void encrypt(char block[], int edflag);
29 // LOCAL FUNCTION PROTOTYPES
30 LOCAL_C void GetBitVector(char data[], char* buffer);
31 LOCAL_C char *TrimWhiteSpaces(char *string);
33 // ============================= LOCAL FUNCTIONS ===============================
35 // -----------------------------------------------------------------------------
37 // To to trim whitespaces in the input string
38 // -----------------------------------------------------------------------------
40 LOCAL_C char *TrimWhiteSpaces(char *string)
43 for(;*string != '\0'; string++)
45 if((*string == ' ') || (*string == '\t'))
54 // -----------------------------------------------------------------------------
56 // This function unpacks the byte to obtain the corresponding bit vector
57 // -----------------------------------------------------------------------------
59 LOCAL_C void GetBitVector(char data[], char* buffer)
64 temp = strlen(buffer);
65 for(int i = 0 ; i<temp ; ++i, ++buffer)
67 data[i] = *buffer - '0';
73 CTestCrypt::~CTestCrypt()
78 CTestCrypt::CTestCrypt(const TDesC& aStepName)
80 // MANDATORY Call to base class method to set up the human readable name for logging.
81 SetTestStepName(aStepName);
84 TVerdict CTestCrypt::doTestStepPreambleL()
88 SetTestStepResult(EPass);
89 iTestDataFile = fopen("C:\\tcrypt\\test_data.dat", "r");
90 if(iTestDataFile == NULL)
92 SetTestStepResult(EFail);
95 return TestStepResult();
98 TVerdict CTestCrypt::doTestStepPostambleL()
100 fclose(iTestDataFile);
102 return TestStepResult();
105 TVerdict CTestCrypt::doTestStepL()
109 if(TestStepName() == KEncrypt)
111 INFO_PRINTF1(_L("Encrypt():"));
113 SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
115 else if(TestStepName() == KCrypt)
117 INFO_PRINTF1(_L("Crypt():"));
119 SetTestStepResult(err ? static_cast<TVerdict>(err) : EPass);
122 return TestStepResult();
126 // -----------------------------------------------------------------------------
127 // CTestCrypt::Encrypt
129 // -----------------------------------------------------------------------------
131 TInt CTestCrypt::Encrypt()
135 memset(pTemp, 0, 30);
136 sprintf(pTemp, "ENCRYPT_TEST_DATA_%d", ++tId);
137 INFO_PRINTF2(_L("Begin: ENCRYPT_TEST_DATA_%d\n"), tId);
139 // locate "test_data_id" from within the file
140 if(!RepositionFilePointer(pTemp))
142 // String not found...invalid test data ID
143 INFO_PRINTF1(_L("Requested test data ID could not be found\n"));
147 // Get the key, data block, operation to be performed and the
148 // expected output for the current test data ID
162 if(GetEncryptTestData(key, block, &edflag, output) != KErrNone)
164 // Test data not found or is not present in the expected
166 INFO_PRINTF1(_L("Test data not found or is not present in the expected format\n"));
170 // Perform encryption/decryption
172 // Invoke setkey from the libcrypt library
175 // Call the encrypt function
176 encrypt(block,edflag);
178 // Verify if the final output is same as the expected output
180 if(!strcmp(block,block))
182 INFO_PRINTF2(_L("End: ENCRYPT_TEST_DATA_%d\n"), tId);
186 INFO_PRINTF1(_L("Output from the encrypt() function does not match the \"expected output\""));
187 INFO_PRINTF2(_L("End: ENCRYPT_TEST_DATA_%d\n"), tId);
191 // -----------------------------------------------------------------------------
192 // CTestCrypt::RepositionFilePointer
193 // This function positions the file pointer to the line immediately following
194 // the string aString
195 // -----------------------------------------------------------------------------
198 TInt CTestCrypt::RepositionFilePointer(const char *aString)
202 while(fgets((char*)buffer, 256, iTestDataFile) != NULL)
206 if((ptr=strchr(buffer,'\r')) || (ptr=strchr(buffer,'\n'))) //check for both
208 if(!strcmp(buffer, aString))
212 memset(buffer, 0, 256);
217 // -----------------------------------------------------------------------------
218 // CTestCrypt::GetEncryptTestData
219 // This function reads the test data for encrypt() API
220 // -----------------------------------------------------------------------------
222 TInt CTestCrypt::GetEncryptTestData(char key[], char block[], int *edflag, char output[])
226 bool bKey = false, // will be set to true upon reading 'key'
227 bBlock = false, // will be set to true upon reading 'data block'
228 bEdflag = false, // will be set to true upon reading 'edflag'
229 bOutput = false; // will be set to true upon reading 'expected output'
234 while((p = fgets(buffer, 256, iTestDataFile)) != NULL)
239 if((ptr=strchr(buffer,'\r')) || (ptr=strchr(buffer,'\n'))) //check for both
241 if(strstr(buffer, "//") != NULL)
245 if(!strcmp(buffer, "END_TEST_DATA"))
247 if(bKey && bBlock && bEdflag && bOutput)
253 if(strstr(buffer, "KEY") != NULL)
258 pTemp = strstr(buffer, ":");
262 pTemp = TrimWhiteSpaces(pTemp);
263 GetBitVector(key, pTemp);
268 if(strstr(buffer, "DATA_BLOCK") != NULL)
270 // Read the data block
272 pTemp = strstr(buffer, ":");
276 pTemp = TrimWhiteSpaces(pTemp);
277 GetBitVector(block, pTemp);
282 if(strstr(buffer, "ED_FLAG") != NULL)
284 // Read the ed_flag parameter
286 pTemp = strstr(buffer, ":");
290 pTemp = TrimWhiteSpaces(pTemp);
291 *edflag = (*pTemp) - '0';
296 if(strstr(buffer, "EXPECTED_OUTPUT") != NULL)
298 // Read the bit vector for the expected output
300 pTemp = strstr(buffer, ":");
304 pTemp = TrimWhiteSpaces(pTemp);
305 GetBitVector(output, pTemp);
315 // -----------------------------------------------------------------------------
317 // Test function to perform crypt() on the input data
318 // -----------------------------------------------------------------------------
320 TInt CTestCrypt::Crypt()
324 memset(pTemp, 0, 30);
325 sprintf(pTemp, "CRYPT_TEST_DATA_%d", ++tId);
326 INFO_PRINTF2(_L("Begin CRYPT_TEST_DATA_%d\n"), tId);
328 // locate "test_data_id" from within the file
329 if(!RepositionFilePointer(pTemp))
331 // String not found...invalid test data ID
332 INFO_PRINTF1(_L("Requested test data ID could not be found\n"));
349 if(GetCryptTestData(password, salt, output) != KErrNone)
351 // Data not in the expected format or is invalid
352 INFO_PRINTF1(_L("Test data not found or is not present in the expected format\n"));
356 char *crypt_output = NULL;
358 crypt_output = crypt(password,salt);
359 if(!strcmp(output,""))
361 // Since salt is NULL, the expected output is ignored...
364 if(!strcmp(salt, ""))
366 // salt is NULL, so skip the first byte from the crypt output
367 if(crypt_output != NULL)
370 if(!strcmp(crypt_output, &output[0]))
372 INFO_PRINTF2(_L("End: CRYPT_TEST_DATA_%d\n"), tId);
375 INFO_PRINTF1(_L("Output from the crypt() function does not match the \"expected output\""));
382 if(!strcmp(crypt_output, output))
384 INFO_PRINTF2(_L("End: CRYPT_TEST_DATA_%d\n"), tId);
387 INFO_PRINTF1(_L("Output from the crypt() function does not match the \"expected output\""));
393 // -----------------------------------------------------------------------------
394 // CTestCrypt::GetCryptTestData
395 // To retrieve the test data for crypt() API
396 // -----------------------------------------------------------------------------
398 TInt CTestCrypt::GetCryptTestData(char password[], char salt[], char output[])
404 bool bPassword = false,
409 while((p = fgets(buffer, 256, iTestDataFile)) != NULL)
413 if((ptr=strchr(buffer,'\r')) || (ptr=strchr(buffer,'\n'))) //check for both
415 if(strstr(buffer, "//") != NULL) // skip the comments
417 // "//" could appear within password or salt, so further
420 // Since judicious use of whitespaces is allowed only from within
421 // the comment lines, the comment line will always start with
423 if(buffer[0] == '/' && buffer[1] == '/')
428 if(!strcmp(buffer, "END_TEST_DATA"))
430 if(bPassword && bSalt && bOutput)
437 // Verify if the input buffer has "data". Data is followed by ":"
438 pTemp = strstr(buffer, ":");
442 pTemp = TrimWhiteSpaces(pTemp);
443 nLength = strlen(pTemp);
444 if(strstr(buffer, "PASSWORD") != NULL)
446 strncpy(password,pTemp,nLength);
450 else if(strstr(buffer, "SALT") != NULL)
452 strncpy(salt,pTemp,nLength);
456 else if(strstr(buffer, "EXPECTED_OUTPUT") != NULL)
458 strncpy(output,pTemp,nLength);