os/security/cryptomgmtlibs/cryptotokenfw/inc/secdlg.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 1997-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  @publishedPartner
    22  @released
    23 */
    24 
    25 #ifndef __SECDLG_H__
    26 #define __SECDLG_H__
    27 
    28 #include <ct.h>
    29 #include <securitydefs.h>
    30 
    31 /** Security Dialog API */
    32 
    33 
    34 /** The maximum length of a PIN label */
    35 const TInt KPINLabelMaxLength = 64;
    36 
    37 /** TPINLabel is a human-readable name for the PIN to be entered. */
    38 //64 = 255 bytes / poss 4bytes per unicode character
    39 typedef TBuf<KPINLabelMaxLength> TPINLabel;
    40 
    41 
    42 /**
    43  * Provides information associated with the PIN, 
    44  * to enable the dialog to display the name and do some basic correctness checking.
    45  */
    46 class TPINParams
    47 	{
    48 public:
    49 	/** The label that identifies the PIN */
    50 	TPINLabel iPINLabel;
    51 	/** The label of the token */
    52 	TPINLabel iTokenLabel;
    53 	/** The minimum length of the PIN */
    54 	TInt iMinLength;
    55 	/** The maximum length of the PIN */
    56 	TInt iMaxLength;
    57 	};
    58 
    59 /** The max PIN length should not exceed 32, because this is the maximum
    60  *	size possible in the CEikSecretEditor class. */
    61 const TInt KMaxPINLength = 32;
    62 
    63 /** A PIN value */
    64 typedef TBuf<KMaxPINLength> TPINValue;
    65 
    66 /** Unblocking PINs can be up to 64 characters if they are entered in the clear. */
    67 const TInt KMaxUnblockPINLength = 64;
    68 
    69 /** An unblocking PIN value */
    70 typedef TBuf<KMaxUnblockPINLength> TUnblockPINValue;
    71 
    72 /**
    73  * Definition of the security dialog interface
    74  * @since 7.0
    75  */
    76 class MSecurityDialog 
    77 	{
    78 public:
    79 	/**
    80 	 * TConnectionType defines the possible protocols used in EstablishSecureConnection
    81 	 * which allows the type of the certificate to be derived.
    82 	 */
    83 	enum TConnectionType
    84 		{
    85 		/** WTLS */
    86 		EWTLS,
    87 		/** TLS */
    88 		ETLS
    89 		};
    90 
    91 
    92 public:
    93 	/**
    94 	 * Prompts the user to enter a PIN. 
    95 	 *
    96 	 * @param aPINParams	Information about the PIN to enter.
    97 	 * @param aRetry		Indicates whether the user is retrying.
    98 	 * @param aPINValue		On return, the PIN the user entered: 
    99 	 * @param aStatus		This will be set to KErrNotFound if no certificates could
   100 	 * 						be presented to the user.
   101 	 */
   102 	virtual void EnterPIN( const TPINParams& aPINParams, TBool aRetry, TPINValue& aPINValue,
   103 						   TRequestStatus& aStatus ) = 0;
   104 
   105 	/**
   106 	 * Prompts the user to change a PIN. 
   107 	 * 
   108 	 * @param aPINParams	Information about the PIN to change
   109 	 * @param aRetry		Indicates whether the user is retrying
   110 	 * @param aOldPINValue	On return, the old PIN the user entered 
   111 	 * @param aNewPINValue	On return, the new PIN the user entered
   112 	 * @param aStatus		This will be set to KErrNotFound if no certificates could
   113 	 * 						be presented to the user.
   114 	 */
   115 	virtual void ChangePIN( const TPINParams& aPINParams, TBool aRetry,
   116 							TPINValue& aOldPINValue, TPINValue& aNewPINValue,
   117 							TRequestStatus& aStatus ) = 0;
   118 
   119 
   120 
   121 	/**
   122 	 * Prompts the user to enable a PIN. 
   123 	 * 
   124 	 * @param aPINParams	Information about the PIN to enable.
   125 	 * @param aRetry		Indicates whether the user is retrying.
   126 	 * @param aPINValue		On return, the PIN the user entered: 
   127 	 * @param aStatus		This will be set to KErrNotFound if no certificates could
   128 	 * 						be presented to the user.
   129 	 */
   130 	virtual void EnablePIN( const TPINParams& aPINParams, TBool aRetry, TPINValue& aPINValue,
   131 							TRequestStatus& aStatus ) = 0;
   132 
   133 	/**
   134 	 * Prompts the user to disable a PIN. 
   135 	 * 
   136 	 * @param aPINParams	Information about the PIN to disable.
   137 	 * @param aRetry		Indicates whether the user is retrying. 
   138 	 * @param aPINValue		On return, the PIN the user entered: 
   139 	 * @param aStatus		This will be set to KErrNotFound if no certificates could
   140 	 * 						be presented to the user.
   141 	 */
   142 	virtual void DisablePIN( const TPINParams& aPINParams, TBool aRetry,
   143 								TPINValue& aPINValue, TRequestStatus& aStatus ) = 0;
   144 	/**
   145 	 * Prompts the user to unblock a PIN. 
   146 	 *
   147 	 * The unblocking PIN is not displayed as it is entered, and can be a
   148 	 * maximum of 32 characters long - hence it is passed back as a TPINValue.
   149 	 * 
   150 	 * @param aBlockedPINParams		Information about the PIN to unblock
   151 	 * @param aUnblockingPINParams	Information about the unblocking PIN
   152 	 * @param aRetry				Indicates whether the user is retrying
   153 	 * @param aUnblockingPINValue	On return, the PIN the user entered
   154 	 * @param aNewPINValue			On return, the new PIN the user entered
   155 	 * @param aStatus				This will be set to KErrNotFound if no certificates could
   156 	 * 								be presented to the user.
   157 	 */	
   158 	virtual void UnblockPIN( const TPINParams& aBlockedPINParams,
   159 							 const TPINParams& aUnblockingPINParams, TBool aRetry,
   160 							 TPINValue& aUnblockingPINValue, TPINValue& aNewPINValue,
   161 							 TRequestStatus& aStatus ) = 0;
   162 
   163 	/**
   164 	 * Informs the user that the PIN has become blocked.
   165 	 * 
   166 	 * @param aPINParams	Information about the blocked PIN.
   167 	 * @param aStatus		This will be set to KErrNotFound if no certificates could
   168 	 * 						be presented to the user.
   169 	 */
   170 	virtual void PINBlocked( const TPINParams& aPINParams, TRequestStatus& aStatus ) = 0;
   171 	
   172 	
   173 	/**
   174 	 * Informs the user that a secure connection is being established with the given
   175 	 * server, allowing them to proceed or cancel the operation.
   176 	 * 
   177 	 * @param aCertData					The certificate sent by the server.
   178 	 * @param aCertHandleList			A selection of certificates to display to the user. All
   179 	 *									certificates are displayed if this is empty.
   180 	 * @param aConnectionType			This allows the type of certificate to be identified.
   181 	 * @param aDoClientAuthentication	Determines whether the user is prompted to
   182 	 * 									agree to authenticate themselves to the server.
   183 	 * 									If this was true before the function was called, it
   184 	 * 									will contain the result of the user's decision on return.
   185 	 * @param aCertHandle				An identifier for the certificate the user selected.
   186 	 * @param aStatus					This will be set to KErrNotFound if no certificates could
   187 	 * 									be presented to the user.
   188 	 */	
   189 	virtual void EstablishSecureConnection( const TDesC8& aCertData,
   190 						const RArray<TCTTokenObjectHandle>& aCertHandleList,
   191 						MSecurityDialog::TConnectionType aConnectionType,
   192 						TBool& aDoClientAuthentication, TCTTokenObjectHandle& aCertHandle,
   193 						TRequestStatus& aStatus ) = 0;
   194 
   195 	/**
   196 	 * Signs some text.
   197 	 * 
   198 	 * @param aTextToSign		The text to be signed.
   199 	 * @param aCertHandleList	A selection of certificates to display to the user.
   200 	 *							All certificates are displayed if this is empty.
   201 	 * @param aCertHandle		On return, an identifier for the certificate the user selected.
   202 	 * 							aStatus - this will be set to KErrNotFound if no certificates
   203 	 *							could be presented to the user.
   204 	 * @param aStatus			This will be set to KErrNotFound if no certificates could
   205 	 * 							be presented to the user.
   206 	 */
   207 	virtual void SignText( const TDesC& aTextToSign,
   208 							const RArray<TCTTokenObjectHandle>& aCertHandleList, 
   209 							TCTTokenObjectHandle& aCertHandle,
   210 							TRequestStatus& aStatus ) = 0;
   211 
   212 	/**
   213 	 * Frees resources of the MSecurityDialog class
   214 	 */
   215 	virtual void Release()=0;
   216 	/**
   217 	 * Informs the user that the server authentication has failed.
   218 	 *
   219 	 * @param aServerName	 The name of the server.
   220 	 * @param aFailurereason The server authentication failure reason
   221 	 * @param aencodedCert	 The certificate sent by the server.
   222 	 * @param aStatus		 This will be set to KErrNone or KErrAbort depending upon
   223 	 *						 the EContinue or EStop.
   224 	 *						 
   225 	 */
   226 	virtual void ServerAuthenticationFailure(const TDesC8& aServerName,
   227 						const TValidationError& aFailureReason, const TDesC8& aEncodedCert,
   228 						TRequestStatus& aStatus ) = 0;
   229 
   230 protected:
   231 	/**
   232 	 * Destructor for the MSecurityDialog class
   233 	 */
   234 	inline virtual ~MSecurityDialog()=0;
   235  public:
   236 	// This is at the end to preserve BC
   237 	/**
   238 	 * Informs the user that the unblock PIN has been blocked.
   239 	 * 
   240 	 * @param aPINParams	Information about the blocked PIN.
   241 	 * @param aStatus		This will be set to KErrNotFound if no certificates could
   242 	 * 						be presented to the user.
   243 	 */
   244 	virtual void TotalBlocked( const TPINParams& aPINParams, TRequestStatus& aStatus ) = 0;
   245 
   246 	/**
   247 	 * Prompts the user to unblock a PIN.
   248 	 *
   249 	 * The unblocking PIN is displayed to the user in the clear as it is
   250 	 * entered, and can be a maximum of 64 characters long - it is passed back
   251 	 * as a TUnblockPINValue.
   252 	 * 
   253 	 * @param aBlockedPINParams		Information about the PIN to unblock
   254 	 * @param aUnblockingPINParams	Information about the unblocking PIN
   255 	 * @param aRetry				Indicates whether the user is retrying
   256 	 * @param aUnblockingPINValue	On return, the PIN the user entered
   257 	 * @param aNewPINValue			On return, the new PIN the user entered
   258 	 * @param aStatus				This will be set to KErrNotFound if no certificates could
   259 	 * 								be presented to the user.
   260 	 */
   261 	virtual void UnblockPINInClear( const TPINParams& aBlockedPINParams,
   262 									const TPINParams& aUnblockingPINParams, TBool aRetry,
   263 									TUnblockPINValue& aUnblockingPINValue, TPINValue& aNewPINValue,
   264 									TRequestStatus& aStatus ) = 0;
   265 
   266 	/**
   267 	 * Cancels an ongoing dialog.
   268 	 */
   269 	virtual void Cancel() = 0; 
   270 	};
   271 
   272 inline MSecurityDialog::~MSecurityDialog() {}
   273 
   274 /**
   275  * Factory for creating the relevant concrete subclass of the security dialog
   276  */
   277 class SecurityDialogFactory
   278 	{
   279 public:
   280 	/**
   281 	 * Creates an instance of a subclass of MSecurityDialog. Implement to create
   282 	 * the appropriate security dialog
   283 	 * 
   284 	 * @return	An object that implements MSecurityDialog functions
   285 	 */
   286 	IMPORT_C static MSecurityDialog* CreateL();
   287 	};
   288 
   289 
   290 #endif