sl@0: /* sl@0: /* sl@0: * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: #ifndef __TESTCRYPT_H__ sl@0: #define __TESTCRYPT_H__ sl@0: sl@0: #include sl@0: // For file input/output sl@0: #include sl@0: #include sl@0: sl@0: _LIT(KEncrypt, "Encrypt"); sl@0: _LIT(KCrypt, "Crypt"); sl@0: sl@0: class CTestCrypt : public CTestStep sl@0: { sl@0: public: sl@0: sl@0: ~CTestCrypt(); sl@0: CTestCrypt(const TDesC& aStepName); sl@0: TVerdict doTestStepL(); sl@0: TVerdict doTestStepPreambleL(); sl@0: TVerdict doTestStepPostambleL(); sl@0: sl@0: private: sl@0: /* sl@0: * Test method to test encrypt() API sl@0: */ sl@0: virtual TInt Encrypt(); sl@0: sl@0: /* sl@0: * Test method to test crypt() API sl@0: */ sl@0: virtual TInt Crypt(); sl@0: sl@0: /* sl@0: * To reposition the file pointer to the line following the sl@0: * requested string, in this case the "test data ID" sl@0: */ sl@0: int RepositionFilePointer(const char *aString); sl@0: sl@0: /* sl@0: * Retrieve's the test data for the encrypt() and setkey() sl@0: * functions sl@0: */ sl@0: TInt GetEncryptTestData(char key[], char block[], int *edflag, char output[]); sl@0: sl@0: TInt GetCryptTestData(char[], char[], char[]); sl@0: sl@0: sl@0: private: // Data sl@0: sl@0: FILE *iTestDataFile; sl@0: }; sl@0: sl@0: #endif sl@0: