os/security/cryptomgmtlibs/cryptotokenfw/tsecdlg/Tsecdlg.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
* Copyright (c) 2002-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
 @internalTechnology
sl@0
    22
*/
sl@0
    23
 
sl@0
    24
#ifndef __TSECDLG_H__
sl@0
    25
#define __TSECDLG_H__
sl@0
    26
sl@0
    27
#include <e32base.h>
sl@0
    28
#include <secdlgimpldefs.h>
sl@0
    29
sl@0
    30
const TUint KTSecDlgNotiferUid = 0x10204789;
sl@0
    31
sl@0
    32
#ifdef _T_SECDLG_TEXTSHELL
sl@0
    33
sl@0
    34
#include <twintnotifier.h>
sl@0
    35
sl@0
    36
/** Method at ordinal 1 to get a list of notifiers from this dll. */
sl@0
    37
IMPORT_C CArrayPtr<MNotifierBase2>* NotifierArray();
sl@0
    38
sl@0
    39
#else
sl@0
    40
sl@0
    41
#include <eiknotapi.h>
sl@0
    42
#include <ecom/implementationproxy.h>
sl@0
    43
#define MNotifierBase2 MEikSrvNotifierBase2
sl@0
    44
sl@0
    45
IMPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount);
sl@0
    46
CArrayPtr<MNotifierBase2>* NotifierArray();
sl@0
    47
sl@0
    48
#endif
sl@0
    49
sl@0
    50
class CInputSpec : public CBase
sl@0
    51
	{
sl@0
    52
 public:
sl@0
    53
	CInputSpec(TSecurityDialogOperation aOp, HBufC* aLabelSpec, HBufC* aResponse1, HBufC* aResponse2);
sl@0
    54
	~CInputSpec();
sl@0
    55
	TSecurityDialogNotification Operation() const { return iOp; }
sl@0
    56
	const TDesC& LabelSpec() const { return *iLabelSpec; }
sl@0
    57
	const TDesC& Response1() const { return *iResponse1; }
sl@0
    58
	const TDesC& Response2() const { return *iResponse2; }
sl@0
    59
 private:
sl@0
    60
	TSecurityDialogNotification iOp;
sl@0
    61
	HBufC* iLabelSpec;
sl@0
    62
	HBufC* iResponse1;
sl@0
    63
	HBufC* iResponse2;
sl@0
    64
	};
sl@0
    65
sl@0
    66
/**
sl@0
    67
 * This is a dummy implementation of the security dialog notifier.  This version
sl@0
    68
 * responds to dialogs with data read from t_secdlg_in.dat present on system drive.  
sl@0
    69
 * This contains the expected sequence of dialogs, and the desired responses.  It keeps a
sl@0
    70
 * count of how many dialogs it has answered in t_secdlg_out.dat present on system drive.
sl@0
    71
 */
sl@0
    72
class CTestSecDlgNotifier : public CBase, public MNotifierBase2
sl@0
    73
	{
sl@0
    74
public:
sl@0
    75
	static CTestSecDlgNotifier* NewL();
sl@0
    76
	CTestSecDlgNotifier();
sl@0
    77
sl@0
    78
private:
sl@0
    79
	void ConstructL();
sl@0
    80
sl@0
    81
	/**
sl@0
    82
	 * Get the index of the next response by reading how many dialogs we have
sl@0
    83
	 * already answered.
sl@0
    84
	 */
sl@0
    85
	TInt GetInputIndexL();
sl@0
    86
sl@0
    87
	/**
sl@0
    88
	 * Write the number of dalogs answered to the output file.
sl@0
    89
	 */
sl@0
    90
	void WriteDialogCountL(TInt aCount);
sl@0
    91
sl@0
    92
	/**
sl@0
    93
	 * Read an input specification.
sl@0
    94
	 */
sl@0
    95
	CInputSpec* ReadInputSpecL(TInt aIndex);
sl@0
    96
sl@0
    97
	void DoEnterPINL(const CInputSpec& aSpec, const TDesC8& aBuffer, TInt aReplySlot, const RMessagePtr2& aMessage);
sl@0
    98
	void DoChangePINL(const CInputSpec& aSpec, const TDesC8& aBuffer, TInt aReplySlot, const RMessagePtr2& aMessage);
sl@0
    99
	void DoStartL( const TDesC8& aBuffer, TInt aReplySlot, const RMessagePtr2& aMessage );
sl@0
   100
	void DoServerAuthenticationFailureL(const CInputSpec& aSpec, const TDesC8& aBuffer, TInt aReplySlot, const RMessagePtr2& aMessage );
sl@0
   101
 	void DoSecureConnectionL(const CInputSpec& aSpec, const TDesC8& aBuffer, TInt aReplySlot, const RMessagePtr2& aMessage );
sl@0
   102
sl@0
   103
private:
sl@0
   104
	void Release();
sl@0
   105
	TNotifierInfo RegisterL();
sl@0
   106
	TNotifierInfo Info() const;
sl@0
   107
	
sl@0
   108
	virtual void StartL( const TDesC8& aBuffer, TInt aReplySlot, const RMessagePtr2& aMessage );
sl@0
   109
	virtual TPtrC8 StartL( const TDesC8& aBuffer );
sl@0
   110
	
sl@0
   111
	void Cancel();
sl@0
   112
	TPtrC8 UpdateL( const TDesC8& aBuffer );
sl@0
   113
sl@0
   114
private:
sl@0
   115
	RFs iFs;
sl@0
   116
	TNotifierInfo iInfo;
sl@0
   117
	};
sl@0
   118
sl@0
   119
#endif