Update contrib.
3 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * This component and the accompanying materials are made available
6 * under the terms of "Eclipse Public License v1.0"
7 * which accompanies this distribution, and is available
8 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
10 * Initial Contributors:
11 * Nokia Corporation - initial contribution.
19 #ifndef __TESTCRYPT_H__
20 #define __TESTCRYPT_H__
22 #include <test/testexecutestepbase.h>
23 // For file input/output
27 _LIT(KEncrypt, "Encrypt");
28 _LIT(KCrypt, "Crypt");
30 class CTestCrypt : public CTestStep
35 CTestCrypt(const TDesC& aStepName);
36 TVerdict doTestStepL();
37 TVerdict doTestStepPreambleL();
38 TVerdict doTestStepPostambleL();
42 * Test method to test encrypt() API
44 virtual TInt Encrypt();
47 * Test method to test crypt() API
52 * To reposition the file pointer to the line following the
53 * requested string, in this case the "test data ID"
55 int RepositionFilePointer(const char *aString);
58 * Retrieve's the test data for the encrypt() and setkey()
61 TInt GetEncryptTestData(char key[], char block[], int *edflag, char output[]);
63 TInt GetCryptTestData(char[], char[], char[]);