Update contrib.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
29 #include <securitydefs.h>
31 /** Security Dialog API */
34 /** The maximum length of a PIN label */
35 const TInt KPINLabelMaxLength = 64;
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;
43 * Provides information associated with the PIN,
44 * to enable the dialog to display the name and do some basic correctness checking.
49 /** The label that identifies the PIN */
51 /** The label of the token */
52 TPINLabel iTokenLabel;
53 /** The minimum length of the PIN */
55 /** The maximum length of the PIN */
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;
64 typedef TBuf<KMaxPINLength> TPINValue;
66 /** Unblocking PINs can be up to 64 characters if they are entered in the clear. */
67 const TInt KMaxUnblockPINLength = 64;
69 /** An unblocking PIN value */
70 typedef TBuf<KMaxUnblockPINLength> TUnblockPINValue;
73 * Definition of the security dialog interface
80 * TConnectionType defines the possible protocols used in EstablishSecureConnection
81 * which allows the type of the certificate to be derived.
94 * Prompts the user to enter a PIN.
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.
102 virtual void EnterPIN( const TPINParams& aPINParams, TBool aRetry, TPINValue& aPINValue,
103 TRequestStatus& aStatus ) = 0;
106 * Prompts the user to change a PIN.
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.
115 virtual void ChangePIN( const TPINParams& aPINParams, TBool aRetry,
116 TPINValue& aOldPINValue, TPINValue& aNewPINValue,
117 TRequestStatus& aStatus ) = 0;
122 * Prompts the user to enable a PIN.
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.
130 virtual void EnablePIN( const TPINParams& aPINParams, TBool aRetry, TPINValue& aPINValue,
131 TRequestStatus& aStatus ) = 0;
134 * Prompts the user to disable a PIN.
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.
142 virtual void DisablePIN( const TPINParams& aPINParams, TBool aRetry,
143 TPINValue& aPINValue, TRequestStatus& aStatus ) = 0;
145 * Prompts the user to unblock a PIN.
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.
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.
158 virtual void UnblockPIN( const TPINParams& aBlockedPINParams,
159 const TPINParams& aUnblockingPINParams, TBool aRetry,
160 TPINValue& aUnblockingPINValue, TPINValue& aNewPINValue,
161 TRequestStatus& aStatus ) = 0;
164 * Informs the user that the PIN has become blocked.
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.
170 virtual void PINBlocked( const TPINParams& aPINParams, TRequestStatus& aStatus ) = 0;
174 * Informs the user that a secure connection is being established with the given
175 * server, allowing them to proceed or cancel the operation.
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.
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;
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.
207 virtual void SignText( const TDesC& aTextToSign,
208 const RArray<TCTTokenObjectHandle>& aCertHandleList,
209 TCTTokenObjectHandle& aCertHandle,
210 TRequestStatus& aStatus ) = 0;
213 * Frees resources of the MSecurityDialog class
215 virtual void Release()=0;
217 * Informs the user that the server authentication has failed.
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.
226 virtual void ServerAuthenticationFailure(const TDesC8& aServerName,
227 const TValidationError& aFailureReason, const TDesC8& aEncodedCert,
228 TRequestStatus& aStatus ) = 0;
232 * Destructor for the MSecurityDialog class
234 inline virtual ~MSecurityDialog()=0;
236 // This is at the end to preserve BC
238 * Informs the user that the unblock PIN has been blocked.
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.
244 virtual void TotalBlocked( const TPINParams& aPINParams, TRequestStatus& aStatus ) = 0;
247 * Prompts the user to unblock a PIN.
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.
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.
261 virtual void UnblockPINInClear( const TPINParams& aBlockedPINParams,
262 const TPINParams& aUnblockingPINParams, TBool aRetry,
263 TUnblockPINValue& aUnblockingPINValue, TPINValue& aNewPINValue,
264 TRequestStatus& aStatus ) = 0;
267 * Cancels an ongoing dialog.
269 virtual void Cancel() = 0;
272 inline MSecurityDialog::~MSecurityDialog() {}
275 * Factory for creating the relevant concrete subclass of the security dialog
277 class SecurityDialogFactory
281 * Creates an instance of a subclass of MSecurityDialog. Implement to create
282 * the appropriate security dialog
284 * @return An object that implements MSecurityDialog functions
286 IMPORT_C static MSecurityDialog* CreateL();