os/security/crypto/weakcryptospi/test/tplugins/inc/rsakeypairgenimpl.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 /*
     2 * Copyright (c) 2006-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 #ifndef __RSAKEYPAIRGENIMPL_H__
    20 #define __RSAKEYPAIRGENIMPL_H__
    21 
    22 /**
    23 @file 
    24 @internalComponent
    25 @released
    26 */
    27 
    28 #include <e32base.h>
    29 #include <e32cmn.h>
    30 #include "keypairgenimpl.h"
    31 
    32 /**
    33  * Implementation of RSA key pair generation as described in PKCS#1 v1.5.
    34  */
    35 namespace SoftwareCrypto
    36 	{
    37 	NONSHARABLE_CLASS(CRSAKeyPairGenImpl) : public CKeyPairGenImpl
    38 		{
    39 	public:
    40 	
    41 		static CRSAKeyPairGenImpl* NewL(TUid aImplementationUid);
    42 		static CRSAKeyPairGenImpl* NewLC(TUid aImplementationUid);
    43 
    44 		// from MPlugin
    45 		void Reset();
    46 
    47 		// from MKeyPairGenerator
    48 		void GenerateKeyPairL(TInt aKeySize, const CCryptoParams& aKeyParameters, CKeyPair*& aKeyPair);
    49 		
    50 		// Override CKeyPairGenImpl virtual functions
    51 		TUid ImplementationUid() const;
    52 		
    53 		const CExtendedCharacteristics* GetExtendedCharacteristicsL();
    54 		static CExtendedCharacteristics* CreateExtendedCharacteristicsL();
    55 
    56 		
    57 		// Destructor
    58 		~CRSAKeyPairGenImpl();
    59 
    60 	private:
    61 		/**
    62 		Constructor
    63 		*/
    64 		CRSAKeyPairGenImpl(TUid aImplementationUid);
    65 			
    66 		/// second phase of construction
    67 		void ConstructL();
    68 		};
    69 	}
    70 
    71 #endif // __RSAKEYPAIRGENIMPL_H__