sl@0: /* sl@0: * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of the License "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: /** sl@0: @file sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: sl@0: #ifndef __SECDLG_H__ sl@0: #define __SECDLG_H__ sl@0: sl@0: #include sl@0: #include sl@0: sl@0: /** Security Dialog API */ sl@0: sl@0: sl@0: /** The maximum length of a PIN label */ sl@0: const TInt KPINLabelMaxLength = 64; sl@0: sl@0: /** TPINLabel is a human-readable name for the PIN to be entered. */ sl@0: //64 = 255 bytes / poss 4bytes per unicode character sl@0: typedef TBuf TPINLabel; sl@0: sl@0: sl@0: /** sl@0: * Provides information associated with the PIN, sl@0: * to enable the dialog to display the name and do some basic correctness checking. sl@0: */ sl@0: class TPINParams sl@0: { sl@0: public: sl@0: /** The label that identifies the PIN */ sl@0: TPINLabel iPINLabel; sl@0: /** The label of the token */ sl@0: TPINLabel iTokenLabel; sl@0: /** The minimum length of the PIN */ sl@0: TInt iMinLength; sl@0: /** The maximum length of the PIN */ sl@0: TInt iMaxLength; sl@0: }; sl@0: sl@0: /** The max PIN length should not exceed 32, because this is the maximum sl@0: * size possible in the CEikSecretEditor class. */ sl@0: const TInt KMaxPINLength = 32; sl@0: sl@0: /** A PIN value */ sl@0: typedef TBuf TPINValue; sl@0: sl@0: /** Unblocking PINs can be up to 64 characters if they are entered in the clear. */ sl@0: const TInt KMaxUnblockPINLength = 64; sl@0: sl@0: /** An unblocking PIN value */ sl@0: typedef TBuf TUnblockPINValue; sl@0: sl@0: /** sl@0: * Definition of the security dialog interface sl@0: * @since 7.0 sl@0: */ sl@0: class MSecurityDialog sl@0: { sl@0: public: sl@0: /** sl@0: * TConnectionType defines the possible protocols used in EstablishSecureConnection sl@0: * which allows the type of the certificate to be derived. sl@0: */ sl@0: enum TConnectionType sl@0: { sl@0: /** WTLS */ sl@0: EWTLS, sl@0: /** TLS */ sl@0: ETLS sl@0: }; sl@0: sl@0: sl@0: public: sl@0: /** sl@0: * Prompts the user to enter a PIN. sl@0: * sl@0: * @param aPINParams Information about the PIN to enter. sl@0: * @param aRetry Indicates whether the user is retrying. sl@0: * @param aPINValue On return, the PIN the user entered: sl@0: * @param aStatus This will be set to KErrNotFound if no certificates could sl@0: * be presented to the user. sl@0: */ sl@0: virtual void EnterPIN( const TPINParams& aPINParams, TBool aRetry, TPINValue& aPINValue, sl@0: TRequestStatus& aStatus ) = 0; sl@0: sl@0: /** sl@0: * Prompts the user to change a PIN. sl@0: * sl@0: * @param aPINParams Information about the PIN to change sl@0: * @param aRetry Indicates whether the user is retrying sl@0: * @param aOldPINValue On return, the old PIN the user entered sl@0: * @param aNewPINValue On return, the new PIN the user entered sl@0: * @param aStatus This will be set to KErrNotFound if no certificates could sl@0: * be presented to the user. sl@0: */ sl@0: virtual void ChangePIN( const TPINParams& aPINParams, TBool aRetry, sl@0: TPINValue& aOldPINValue, TPINValue& aNewPINValue, sl@0: TRequestStatus& aStatus ) = 0; sl@0: sl@0: sl@0: sl@0: /** sl@0: * Prompts the user to enable a PIN. sl@0: * sl@0: * @param aPINParams Information about the PIN to enable. sl@0: * @param aRetry Indicates whether the user is retrying. sl@0: * @param aPINValue On return, the PIN the user entered: sl@0: * @param aStatus This will be set to KErrNotFound if no certificates could sl@0: * be presented to the user. sl@0: */ sl@0: virtual void EnablePIN( const TPINParams& aPINParams, TBool aRetry, TPINValue& aPINValue, sl@0: TRequestStatus& aStatus ) = 0; sl@0: sl@0: /** sl@0: * Prompts the user to disable a PIN. sl@0: * sl@0: * @param aPINParams Information about the PIN to disable. sl@0: * @param aRetry Indicates whether the user is retrying. sl@0: * @param aPINValue On return, the PIN the user entered: sl@0: * @param aStatus This will be set to KErrNotFound if no certificates could sl@0: * be presented to the user. sl@0: */ sl@0: virtual void DisablePIN( const TPINParams& aPINParams, TBool aRetry, sl@0: TPINValue& aPINValue, TRequestStatus& aStatus ) = 0; sl@0: /** sl@0: * Prompts the user to unblock a PIN. sl@0: * sl@0: * The unblocking PIN is not displayed as it is entered, and can be a sl@0: * maximum of 32 characters long - hence it is passed back as a TPINValue. sl@0: * sl@0: * @param aBlockedPINParams Information about the PIN to unblock sl@0: * @param aUnblockingPINParams Information about the unblocking PIN sl@0: * @param aRetry Indicates whether the user is retrying sl@0: * @param aUnblockingPINValue On return, the PIN the user entered sl@0: * @param aNewPINValue On return, the new PIN the user entered sl@0: * @param aStatus This will be set to KErrNotFound if no certificates could sl@0: * be presented to the user. sl@0: */ sl@0: virtual void UnblockPIN( const TPINParams& aBlockedPINParams, sl@0: const TPINParams& aUnblockingPINParams, TBool aRetry, sl@0: TPINValue& aUnblockingPINValue, TPINValue& aNewPINValue, sl@0: TRequestStatus& aStatus ) = 0; sl@0: sl@0: /** sl@0: * Informs the user that the PIN has become blocked. sl@0: * sl@0: * @param aPINParams Information about the blocked PIN. sl@0: * @param aStatus This will be set to KErrNotFound if no certificates could sl@0: * be presented to the user. sl@0: */ sl@0: virtual void PINBlocked( const TPINParams& aPINParams, TRequestStatus& aStatus ) = 0; sl@0: sl@0: sl@0: /** sl@0: * Informs the user that a secure connection is being established with the given sl@0: * server, allowing them to proceed or cancel the operation. sl@0: * sl@0: * @param aCertData The certificate sent by the server. sl@0: * @param aCertHandleList A selection of certificates to display to the user. All sl@0: * certificates are displayed if this is empty. sl@0: * @param aConnectionType This allows the type of certificate to be identified. sl@0: * @param aDoClientAuthentication Determines whether the user is prompted to sl@0: * agree to authenticate themselves to the server. sl@0: * If this was true before the function was called, it sl@0: * will contain the result of the user's decision on return. sl@0: * @param aCertHandle An identifier for the certificate the user selected. sl@0: * @param aStatus This will be set to KErrNotFound if no certificates could sl@0: * be presented to the user. sl@0: */ sl@0: virtual void EstablishSecureConnection( const TDesC8& aCertData, sl@0: const RArray& aCertHandleList, sl@0: MSecurityDialog::TConnectionType aConnectionType, sl@0: TBool& aDoClientAuthentication, TCTTokenObjectHandle& aCertHandle, sl@0: TRequestStatus& aStatus ) = 0; sl@0: sl@0: /** sl@0: * Signs some text. sl@0: * sl@0: * @param aTextToSign The text to be signed. sl@0: * @param aCertHandleList A selection of certificates to display to the user. sl@0: * All certificates are displayed if this is empty. sl@0: * @param aCertHandle On return, an identifier for the certificate the user selected. sl@0: * aStatus - this will be set to KErrNotFound if no certificates sl@0: * could be presented to the user. sl@0: * @param aStatus This will be set to KErrNotFound if no certificates could sl@0: * be presented to the user. sl@0: */ sl@0: virtual void SignText( const TDesC& aTextToSign, sl@0: const RArray& aCertHandleList, sl@0: TCTTokenObjectHandle& aCertHandle, sl@0: TRequestStatus& aStatus ) = 0; sl@0: sl@0: /** sl@0: * Frees resources of the MSecurityDialog class sl@0: */ sl@0: virtual void Release()=0; sl@0: /** sl@0: * Informs the user that the server authentication has failed. sl@0: * sl@0: * @param aServerName The name of the server. sl@0: * @param aFailurereason The server authentication failure reason sl@0: * @param aencodedCert The certificate sent by the server. sl@0: * @param aStatus This will be set to KErrNone or KErrAbort depending upon sl@0: * the EContinue or EStop. sl@0: * sl@0: */ sl@0: virtual void ServerAuthenticationFailure(const TDesC8& aServerName, sl@0: const TValidationError& aFailureReason, const TDesC8& aEncodedCert, sl@0: TRequestStatus& aStatus ) = 0; sl@0: sl@0: protected: sl@0: /** sl@0: * Destructor for the MSecurityDialog class sl@0: */ sl@0: inline virtual ~MSecurityDialog()=0; sl@0: public: sl@0: // This is at the end to preserve BC sl@0: /** sl@0: * Informs the user that the unblock PIN has been blocked. sl@0: * sl@0: * @param aPINParams Information about the blocked PIN. sl@0: * @param aStatus This will be set to KErrNotFound if no certificates could sl@0: * be presented to the user. sl@0: */ sl@0: virtual void TotalBlocked( const TPINParams& aPINParams, TRequestStatus& aStatus ) = 0; sl@0: sl@0: /** sl@0: * Prompts the user to unblock a PIN. sl@0: * sl@0: * The unblocking PIN is displayed to the user in the clear as it is sl@0: * entered, and can be a maximum of 64 characters long - it is passed back sl@0: * as a TUnblockPINValue. sl@0: * sl@0: * @param aBlockedPINParams Information about the PIN to unblock sl@0: * @param aUnblockingPINParams Information about the unblocking PIN sl@0: * @param aRetry Indicates whether the user is retrying sl@0: * @param aUnblockingPINValue On return, the PIN the user entered sl@0: * @param aNewPINValue On return, the new PIN the user entered sl@0: * @param aStatus This will be set to KErrNotFound if no certificates could sl@0: * be presented to the user. sl@0: */ sl@0: virtual void UnblockPINInClear( const TPINParams& aBlockedPINParams, sl@0: const TPINParams& aUnblockingPINParams, TBool aRetry, sl@0: TUnblockPINValue& aUnblockingPINValue, TPINValue& aNewPINValue, sl@0: TRequestStatus& aStatus ) = 0; sl@0: sl@0: /** sl@0: * Cancels an ongoing dialog. sl@0: */ sl@0: virtual void Cancel() = 0; sl@0: }; sl@0: sl@0: inline MSecurityDialog::~MSecurityDialog() {} sl@0: sl@0: /** sl@0: * Factory for creating the relevant concrete subclass of the security dialog sl@0: */ sl@0: class SecurityDialogFactory sl@0: { sl@0: public: sl@0: /** sl@0: * Creates an instance of a subclass of MSecurityDialog. Implement to create sl@0: * the appropriate security dialog sl@0: * sl@0: * @return An object that implements MSecurityDialog functions sl@0: */ sl@0: IMPORT_C static MSecurityDialog* CreateL(); sl@0: }; sl@0: sl@0: sl@0: #endif