os/security/cryptoplugins/cryptospiplugins/test/dummyecchwplugin/group/dummyecchwplugin.mmp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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 OS_LAYER_SYSTEMINCLUDE
    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