os/security/crypto/weakcryptospi/test/kms/exported_include/keyhandle.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2007-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 * Key handle type used with KMS.  This class is defined in its own
    16 * file because it is used by lots of different components which do
    17 * not need to know about each other's existence.  For example, a
    18 * KMS client does not need to know about the kernel extension.
    19 * Therefore, it is defined independently of all these components.
    20 *
    21 */
    22 
    23 
    24 
    25 
    26 /**
    27  @file
    28  @internalTechnology
    29 */
    30 
    31 #ifndef KEYHANDLE_H
    32 #define KEYHANDLE_H
    33 
    34 #include <e32def.h>
    35 
    36 class TKeyHandle
    37 /**
    38 	Opaque 32-bit value identifies a key stored in hardware.
    39 	@internalTechnology
    40  */
    41 	{
    42 public:
    43 	/** @internalTechnology */
    44 	TUint32 iValue;
    45 	};
    46 
    47 #endif	// #ifndef KEYHANDLE_H