cryptoservices/filebasedcertificateandkeystores/test/thwkeystore/common/tkeydetails.h
changeset 15 da2ae96f639b
child 29 ece3df019add
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cryptoservices/filebasedcertificateandkeystores/test/thwkeystore/common/tkeydetails.h	Mon Oct 12 10:17:04 2009 +0300
@@ -0,0 +1,60 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description: 
+* Defines the class which represents the structure of the key on 
+* which Crypto Token HAI internally operates. It contains the key 
+* information relevant to Crypto Token HAI.
+*
+*/
+
+
+/**
+ @file
+ @internalComponent
+ @released
+*/
+
+#ifndef TKEYDETAILS_H
+#define TKEYDETAILS_H
+
+#include <e32base.h>
+#include <mctkeystore.h>
+
+class CKeyDetails : public CKeyInfoBase
+	{
+public:
+
+	static CKeyDetails* NewL(	TInt aHandle, const TDesC& aLabel, 
+								const TDesC8& aPrivateKey, const TDesC8& aPublicKey );
+	static CKeyDetails* NewL(RStoreReadStream& aReadStream);
+	~CKeyDetails();
+
+public:
+	/** Get the handle of the key. */
+	TInt Handle() const;
+	HBufC8* PrivateKey() const;
+	HBufC8* PublicKey() const;
+	void ExternalizeL(RWriteStream&) const;
+	
+private:
+	void ConstructL(TInt aHandle, const TDesC& aLabel,const TDesC8& aPrivateKey, const TDesC8& aPublicKey );
+	CKeyDetails();
+	void InternalizeL(RReadStream& aReadStream);
+	
+private:
+	HBufC8* iPrivateKey;
+	HBufC8* iPublicKey;
+	};
+
+#endif // TKEYDETAILS_H