os/ossrv/stdlibs/libcrypt/test/inc/tcrypt.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
/*
sl@0
     3
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     4
* All rights reserved.
sl@0
     5
* This component and the accompanying materials are made available
sl@0
     6
* under the terms of "Eclipse Public License v1.0"
sl@0
     7
* which accompanies this distribution, and is available
sl@0
     8
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     9
*
sl@0
    10
* Initial Contributors:
sl@0
    11
* Nokia Corporation - initial contribution.
sl@0
    12
*
sl@0
    13
* Contributors:
sl@0
    14
*
sl@0
    15
* Description:
sl@0
    16
*
sl@0
    17
*/
sl@0
    18
sl@0
    19
#ifndef __TESTCRYPT_H__
sl@0
    20
#define __TESTCRYPT_H__
sl@0
    21
sl@0
    22
#include <test/testexecutestepbase.h>
sl@0
    23
// For file input/output
sl@0
    24
#include <stdio.h>
sl@0
    25
#include <string.h>
sl@0
    26
sl@0
    27
_LIT(KEncrypt, "Encrypt");
sl@0
    28
_LIT(KCrypt, "Crypt");
sl@0
    29
sl@0
    30
class CTestCrypt : public CTestStep
sl@0
    31
	{
sl@0
    32
public:
sl@0
    33
sl@0
    34
	~CTestCrypt(); 
sl@0
    35
	CTestCrypt(const TDesC& aStepName);
sl@0
    36
	TVerdict doTestStepL();
sl@0
    37
	TVerdict doTestStepPreambleL(); 
sl@0
    38
	TVerdict doTestStepPostambleL();
sl@0
    39
	
sl@0
    40
private:
sl@0
    41
	/*
sl@0
    42
	 * Test method to test encrypt() API
sl@0
    43
	 */
sl@0
    44
    virtual TInt Encrypt();
sl@0
    45
        
sl@0
    46
    /*
sl@0
    47
     * Test method to test crypt() API
sl@0
    48
     */
sl@0
    49
    virtual TInt Crypt();
sl@0
    50
        
sl@0
    51
    /*
sl@0
    52
     * To reposition the file pointer to the line following the
sl@0
    53
     * requested string, in this case the "test data ID"
sl@0
    54
     */
sl@0
    55
    int RepositionFilePointer(const char *aString);
sl@0
    56
        
sl@0
    57
    /*
sl@0
    58
     * Retrieve's the test data for the encrypt() and setkey()
sl@0
    59
     * functions
sl@0
    60
     */
sl@0
    61
    TInt GetEncryptTestData(char key[], char block[], int *edflag, char output[]);
sl@0
    62
        
sl@0
    63
    TInt GetCryptTestData(char[], char[], char[]);
sl@0
    64
sl@0
    65
    
sl@0
    66
private:    // Data
sl@0
    67
      
sl@0
    68
	FILE *iTestDataFile;
sl@0
    69
	};
sl@0
    70
sl@0
    71
#endif 
sl@0
    72