Update contrib.
2 * Copyright (c) 2001-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.
25 #ifndef __SECDLGIMPLDEFS_H__
26 #define __SECDLGIMPLDEFS_H__
33 // KUidSecurityDialogNotifier is named KUidWIMDialogNotifier in the UID database
34 const TUid KUidSecurityDialogNotifier = { 0x101F3CBB };
37 typedef TUint TSecurityDialogNotification;
40 typedef TPckgBuf<TSecurityDialogNotification> TSecurityDialogNotificationBuf;
44 * Defines the operations provided by the security dialog.
46 * It is used to identify the operation when transferring over to the notifier plugin.
48 enum TSecurityDialogOperation
50 /** Secure connection */
51 ESecureConnection = 0x01,
67 ETotalBlocked = 0x100,
68 /** Unblock PIN in clear */
69 EUnblockPINInClear = 0x200,
70 /** ServerAuthenticationFailure */
71 EServerAuthenticationFailure = 0x400
75 const TInt KSecurityDialogOperationMask = 0xFFFF;
76 const TInt KServerNameBuf = 0xFF; // 0xFF = 255
77 const TInt KEncodedCertBuf = 0x400; // 0x400 = 1024
79 /** Security dialog error condition */
80 enum TSecurityDialogErrorCondition
82 /** Incorrect PIN value */
83 EPINValueIncorrect = 0x10000000
87 //Passed back in TRequestStatus, if client agrees to authenticate/ The client TRequeststatus never gets set to this
88 const TInt KClientAuthenticationRequested = 1;
91 * Class used with corresponding TPckgBuf to build buffer for the
92 * Server Authentication Failure Dialog operation.
94 class TServerAuthenticationFailureInput
97 /** EServerAuthenticationFailure */
98 TSecurityDialogNotification iOperation;
101 TInt iServerNameLength;
103 /** Encoded Certificate */
104 TInt iEncodedCertLength;
106 /** Failure Reason */
107 TValidationError iFailureReason;
111 typedef TPckgBuf<TServerAuthenticationFailureInput> TServerAuthenticationFailureInputBuf;
114 * The input buffer for the secure connection and sign text operations.
120 TSecurityDialogNotification iOperation;
123 TUint iVariableDataSize;
126 TUint iCertHandleArrayTotal;
129 * Whether to do client authentication
131 * Used only for secure connection dialog
133 TBool iDoClientAuthentication;
135 /** The connection type */
136 MSecurityDialog::TConnectionType iConnectionType;
140 typedef TPckgBuf<TSignInput> TSignInputBuf;
143 typedef TPckgBuf<TCTTokenObjectHandle> TCTTokenObjectHandleBuf;
147 * Input data for the EEnterPIN, EChangePIN, EPINBlocked operations.
153 TSecurityDialogNotification iOperation;
155 /** Information associated with the PIN */
160 typedef TPckgBuf<TPINInput> TPINInputBuf;
165 * Input data for the EUnblockPIN operation.
167 class TUnblockPINInput
170 TSecurityDialogNotification iOperation;
172 TPINParams iUnblockPIN;
176 typedef TPckgBuf<TUnblockPINInput> TUnblockPINInputBuf;
179 * Output from the EServerAuthenticationFailure operations.
181 /** Security dialog error condition */
182 enum TServerAuthenticationFailureDialogResult
188 typedef TPckgBuf<TServerAuthenticationFailureDialogResult> TServerAuthenticationFailureOutputBuf;
191 * Output from the EChangePIN and EUnblockPIN operations.
196 // This could be for the current PIN or the unblocking PIN
197 TPINValue iPINValueToCheck;
198 TPINValue iNewPINValue;
202 typedef TPckgBuf<TTwoPINOutput> TTwoPINOutputBuf;
205 typedef TPckgBuf<TPINValue> TPINValueBuf;
210 * Output from the EUnblockPINInClear operation.
212 class TUnblockPINInClearOutput
215 // This could be for the current PIN or the unblocking PIN
216 TUnblockPINValue iPINValueToCheck;
217 TPINValue iNewPINValue;
221 typedef TPckgBuf<TUnblockPINInClearOutput> TUnblockPINInClearOutputBuf;
225 * This class is used by the reference implementation of the security dialog,
226 * CRefSecurityDialog, to pack the notifier buffer for the Server
227 * Authentication Failure Dialog operation, and by the notifier server plugin
228 * to unpack the buffer.
231 class CServerAuthenticationFailureInput : public CBase
235 virtual ~CServerAuthenticationFailureInput();
240 * Static constructor function that uses the data passed in the call to
241 * MSecurityDialog::ServerAuthenticationFailure to instantiate the object.
243 * Depending on the value of aCreateOwnBuffers, the object can allocate
244 * new buffers with copies of the server name and encoded cert data, or it
245 * can use pointers to the buffers for the existing descriptors. It should
246 * only use the existing buffers if they won't be freed before an input
247 * buffer for the notifier is created using PackBufferL.
249 * @param aServerName Name of the server with the certificate that
250 * failed authentication.
251 * @param aFailureReason Reason for certificate authentication failure.
252 * @param aEncodedCert Encoded X509 Certificate data.
253 * @param aCreateOwnBuffers Indicates whether new heap buffers are needed.
255 * @return The new CServerAuthenticationFailureInput
258 static CServerAuthenticationFailureInput* NewL(const TDesC8& aServerName,const TValidationError& aFailureReason, const TDesC8& aEncodedCert, const TBool aCreateOwnBuffers = EFalse);
259 /** @internalComponent */
260 static CServerAuthenticationFailureInput* NewLC(const TDesC8& aServerName,const TValidationError& aFailureReason, const TDesC8& aEncodedCert, const TBool aCreateOwnBuffers = EFalse);
263 * Static constructor function that constructs the object using the data
264 * in a supplied buffer. This can be used in the implementation of a
265 * plugin for the extended notifier framework; the buffer supplied to the
266 * notifier for this dialog operation will be in the correct format to
267 * construct the class with this function.
269 * Depending on the value of aCreateOwnBuffers, new buffers can be
270 * allocated to hold copies of the server name and encoded cert data, or
271 * the object can use pointers to the data positions within the input
272 * buffer. It should only use the existing buffer if it will persist
273 * until the data is no longer needed.
275 * @param aBuffer A data buffer containing the data needed
277 * @param aCreateOwnBuffers Indicates whether new heap buffers are
280 * @return The new CServerAuthenticationFailureInput
283 IMPORT_C static CServerAuthenticationFailureInput* NewL(const TDesC8& aBuffer, const TBool aCreateOwnBuffers = EFalse);
284 IMPORT_C static CServerAuthenticationFailureInput* NewLC(const TDesC8& aBuffer, const TBool aCreateOwnBuffers = EFalse);
288 * Gets the reason for validation failure.
290 * @return The failure reason. */
291 IMPORT_C TValidationError FailureReason();
294 * Sets the supplied TPtrC8 to point to the buffer for the server name.
296 * @param aServerNamePtr A reference to a TPtrC8 to set to point to
297 * the server name data. */
298 IMPORT_C void GetServerName(TPtrC8& aServerNamePtr);
301 * Sets the supplied TPtrC8 to point to the buffer for the encoded cert.
303 * @param aServerNamePtr A reference to a TPtrC8 to set to point to
304 * the encoded cert data. */
305 IMPORT_C void GetEncodedCert(TPtrC8& aEncodedCertPtr);
310 * Allocates and fills a heap buffer with the data to be sent to the
311 * notifier server. Ownership of this buffer passes to the calling
314 * @return The allocated buffer. */
316 HBufC8* PackBufferL() const;
319 CServerAuthenticationFailureInput();
321 void ConstructL(const TDesC8& aServerName,const TValidationError& aFailureReason, const TDesC8& aEncodedCert, const TBool aCreateOwnBuffers = EFalse);
322 void ConstructL(const TDesC8& aBuffer, const TBool aCreateOwnBuffers = EFalse);
325 /** EServerAuthenticationFailure */
326 TSecurityDialogNotification iOperation;
328 /** Failure Reason */
329 TValidationError iFailureReason;
333 TPtrC8 iServerNamePtr;
335 /** Encoded Certificate */
336 HBufC8* iEncodedCert;
337 TPtrC8 iEncodedCertPtr;