os/security/cryptoplugins/cryptospiplugins/test/h4drv/crypto_h4/cryptoh4.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of the License "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description: 
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @file
sl@0
    21
 @internalComponent
sl@0
    22
 @released
sl@0
    23
*/
sl@0
    24
#ifndef __CRYPTOH4__
sl@0
    25
#define __CRYPTOH4__
sl@0
    26
#include "cryptoldd.h"
sl@0
    27
sl@0
    28
class DCryptoPddFactory : public DPhysicalDevice
sl@0
    29
    {
sl@0
    30
public:
sl@0
    31
    DCryptoPddFactory();
sl@0
    32
	~DCryptoPddFactory();
sl@0
    33
    // Inherited from DPhysicalDevice
sl@0
    34
    virtual TInt Install();
sl@0
    35
    // Inherited from DPhysicalDevice
sl@0
    36
    virtual void GetCaps(TDes8& aDes) const;
sl@0
    37
    // Inherited from DPhysicalDevice
sl@0
    38
    virtual TInt Create(DBase*& aChannel, TInt aUnit, const TDesC8* aInfo, const TVersion& aVer);
sl@0
    39
    // Inherited from DPhysicalDevice
sl@0
    40
    virtual TInt Validate(TInt aUnit, const TDesC8* aInfo, const TVersion& aVer);
sl@0
    41
sl@0
    42
	TDfcQue *DfcQue();
sl@0
    43
	static void DeleteDfcQFunc(TAny *any);
sl@0
    44
sl@0
    45
public:
sl@0
    46
    enum TMinimumLDDVersion
sl@0
    47
        {
sl@0
    48
        EMinimumLddMajorVersion=1,
sl@0
    49
        EMinimumLddMinorVersion=0,
sl@0
    50
        EMinimumLddBuild=0 //Not used
sl@0
    51
        };
sl@0
    52
private:
sl@0
    53
	TBool iDfcQueInitialised;
sl@0
    54
	TDfcQue *iDfcQue; // Will be deleted by the deleteDfcQDfc started by our destructor
sl@0
    55
    };
sl@0
    56
sl@0
    57
sl@0
    58
sl@0
    59
class CryptoJobRandom;
sl@0
    60
class CryptoJobAes;
sl@0
    61
class DCryptoH4Chan : public DCryptoPddChannel
sl@0
    62
	{
sl@0
    63
public:
sl@0
    64
	DCryptoH4Chan(DCryptoPddFactory &iCryptoPddFactory);
sl@0
    65
    ~DCryptoH4Chan();
sl@0
    66
sl@0
    67
    TInt DoCreate();
sl@0
    68
sl@0
    69
	virtual TDfcQue* DfcQue();
sl@0
    70
sl@0
    71
    virtual void GetHwVersions(RCryptoDriver::THwVersions& aHwVersions) const;
sl@0
    72
sl@0
    73
    virtual TInt FakeDriverSetting() const;
sl@0
    74
    virtual TInt SetFakeDriverSetting(TInt aFakeDriverSetting);
sl@0
    75
sl@0
    76
	virtual CryptoJobRandom *GetJobRandom(TBool aAutoCreate = ETrue);
sl@0
    77
	virtual CryptoJobAes *GetJobAes(TBool aAutoCreate = ETrue);
sl@0
    78
sl@0
    79
private:
sl@0
    80
	DCryptoPddFactory &iCryptoPddFactory;
sl@0
    81
sl@0
    82
    TInt iFakeDriverSetting;
sl@0
    83
sl@0
    84
	CryptoJobRandom *iCryptoJobRandom;
sl@0
    85
	CryptoJobAes *iCryptoJobAes;
sl@0
    86
	};
sl@0
    87
sl@0
    88
sl@0
    89
sl@0
    90
sl@0
    91
#endif