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