1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/stdlibs/libcrypt/test/inc/tcrypt.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,72 @@
1.4 +/*
1.5 +/*
1.6 +* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
1.7 +* All rights reserved.
1.8 +* This component and the accompanying materials are made available
1.9 +* under the terms of "Eclipse Public License v1.0"
1.10 +* which accompanies this distribution, and is available
1.11 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.12 +*
1.13 +* Initial Contributors:
1.14 +* Nokia Corporation - initial contribution.
1.15 +*
1.16 +* Contributors:
1.17 +*
1.18 +* Description:
1.19 +*
1.20 +*/
1.21 +
1.22 +#ifndef __TESTCRYPT_H__
1.23 +#define __TESTCRYPT_H__
1.24 +
1.25 +#include <test/testexecutestepbase.h>
1.26 +// For file input/output
1.27 +#include <stdio.h>
1.28 +#include <string.h>
1.29 +
1.30 +_LIT(KEncrypt, "Encrypt");
1.31 +_LIT(KCrypt, "Crypt");
1.32 +
1.33 +class CTestCrypt : public CTestStep
1.34 + {
1.35 +public:
1.36 +
1.37 + ~CTestCrypt();
1.38 + CTestCrypt(const TDesC& aStepName);
1.39 + TVerdict doTestStepL();
1.40 + TVerdict doTestStepPreambleL();
1.41 + TVerdict doTestStepPostambleL();
1.42 +
1.43 +private:
1.44 + /*
1.45 + * Test method to test encrypt() API
1.46 + */
1.47 + virtual TInt Encrypt();
1.48 +
1.49 + /*
1.50 + * Test method to test crypt() API
1.51 + */
1.52 + virtual TInt Crypt();
1.53 +
1.54 + /*
1.55 + * To reposition the file pointer to the line following the
1.56 + * requested string, in this case the "test data ID"
1.57 + */
1.58 + int RepositionFilePointer(const char *aString);
1.59 +
1.60 + /*
1.61 + * Retrieve's the test data for the encrypt() and setkey()
1.62 + * functions
1.63 + */
1.64 + TInt GetEncryptTestData(char key[], char block[], int *edflag, char output[]);
1.65 +
1.66 + TInt GetCryptTestData(char[], char[], char[]);
1.67 +
1.68 +
1.69 +private: // Data
1.70 +
1.71 + FILE *iTestDataFile;
1.72 + };
1.73 +
1.74 +#endif
1.75 +