cryptoplugins/cryptospiplugins/test/dummyecchwplugin/group/dummyecchwplugin.mmp
changeset 15 da2ae96f639b
child 42 eb9b28acd381
equal deleted inserted replaced
10:afc583cfa176 15:da2ae96f639b
       
     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 * dummyecchwplugin.dll is a cryptospi plug-in which provides a dummy 
       
    16 * implementation of Ecc. This is used for reference and testing 
       
    17 * purposes only. This does not actually implement the ecc algorithm. 
       
    18 * This plug-in performs cryptographic operations without having access 
       
    19 * to the actual key. It accomplishes this in the following way:-
       
    20 * a) extracts the key handle
       
    21 * b) uses this handle to invoke cryptospihai.dll. cryptospihai.dll 
       
    22 * performs the operations and returns the output back.
       
    23 * Licensees can use this plug-in as a reference for implementing a 
       
    24 * similar plug-in.
       
    25 *
       
    26 */
       
    27 
       
    28 
       
    29 TARGET 		dummyecchwplugin.dll
       
    30 TARGETTYPE	dll
       
    31 
       
    32 CAPABILITY 	All -Tcb
       
    33 
       
    34 UID 		0xA000D695 0xA000D696
       
    35 VENDORID	0x70000001
       
    36 
       
    37 DEFFILE dummyecchwplugin.def
       
    38 
       
    39 USERINCLUDE		.
       
    40 USERINCLUDE	../../../../../crypto/weakcryptospi/inc/spi
       
    41 SYSTEMINCLUDE /epoc32/include
       
    42 
       
    43 SOURCEPATH ../src
       
    44 SOURCE		pluginentry.cpp
       
    45 SOURCE		dummyeccimpl.cpp
       
    46 SOURCE		dummyeccsignerimpl.cpp
       
    47 
       
    48 LIBRARY		euser.lib cryptospi.lib cryptospihai.lib
       
    49 
       
    50 SMPSAFE
       
    51