os/security/cryptoplugins/cryptospiplugins/test/dummyecchwplugin/group/cryptospihai.mmp
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) 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 * cryptospihai.dll provides a reference implementation for cryptospi 
    16 * hardware abstraction interface (HAI). This is used by a cryptospi  
    17 * plugin, in the case where actual keys are stored in hardware. This 
    18 * plugin does the following:-
    19 * a) extracts the key from Crypto Token HAI
    20 * b) performs the operations (signing and decryption)
    21 * c) returns the results to the spi plugin. 
    22 * Licensees can use this plug-in as a reference for implementing a 
    23 * similar plug-in.
    24 *
    25 */
    26 
    27 
    28 TARGET 		cryptospihai.dll
    29 TARGETTYPE	dll
    30 
    31 CAPABILITY 	All -Tcb
    32 
    33 UID 		0xA000D693 0xA000D694
    34 VENDORID	0x70000001
    35 
    36 DEFFILE cryptospihai.def
    37 
    38 USERINCLUDE		.
    39 OS_LAYER_SYSTEMINCLUDE
    40 USERINCLUDE	../../../../../crypto/weakcryptospi/inc/spi
    41 USERINCLUDE	../../../../../cryptoservices/filebasedcertificateandkeystores/test/tcryptotokenhai
    42 
    43 SOURCEPaTH ../src
    44 SOURCE		cryptospihai.cpp
    45 
    46 LIBRARY		euser.lib
    47 LIBRARY		cryptospi.lib
    48 LIBRARY		tcryptotokenhai.lib
    49 LIBRARY     cryptography.lib
    50 
    51 SMPSAFE
    52