os/security/cryptoplugins/cryptospiplugins/source/softwarecrypto/pluginentry.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of the License "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description: 
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @file
sl@0
    21
 @internalComponent
sl@0
    22
 @released
sl@0
    23
*/
sl@0
    24
sl@0
    25
#ifndef __PLUGINENTRY_H__
sl@0
    26
#define __PLUGINENTRY_H__
sl@0
    27
sl@0
    28
#include <cryptospi/cryptoparams.h>
sl@0
    29
#include <e32cmn.h>
sl@0
    30
#include <cryptospi/cryptospidef.h>
sl@0
    31
#include "keys.h"
sl@0
    32
#include <cryptospi/hashplugin.h>
sl@0
    33
#include <cryptospi/randomplugin.h>
sl@0
    34
#include "symmetriccipherplugin.h"
sl@0
    35
#include "asymmetriccipherplugin.h"
sl@0
    36
#include "signerplugin.h"
sl@0
    37
#include "verifierplugin.h"
sl@0
    38
#include "keypairgeneratorplugin.h"
sl@0
    39
#include "keyagreementplugin.h"
sl@0
    40
sl@0
    41
sl@0
    42
#ifdef SYMBIAN_SDP_IPSEC_VOIP_SUPPORT	
sl@0
    43
	#include <cryptospi/macplugin.h>
sl@0
    44
#endif
sl@0
    45
sl@0
    46
using namespace CryptoSpi;
sl@0
    47
sl@0
    48
class CCryptoPluginEntry
sl@0
    49
	{
sl@0
    50
public:
sl@0
    51
	
sl@0
    52
	/**
sl@0
    53
	 * Enumerates the set of plug-ins supported by the module for a given interface
sl@0
    54
	 * e.g. all of the hash plug-ins.
sl@0
    55
	 *  
sl@0
    56
	 * @param aInterface The UID of the plug-in interface type. If the UID is not recognised
sl@0
    57
	 * then the NULL pointer must be returned.
sl@0
    58
	 * @param aNumPlugins The number of plug-in characteristics objects in the result.
sl@0
    59
	 * @param A pointer to an array of characteristics objects. The SPI casts this to
sl@0
    60
	 *  the expected sub-class of TCharacteristics for the specified interface UID.
sl@0
    61
	 */
sl@0
    62
	IMPORT_C static const TCharacteristics** Enumerate(TUid aInterface, TInt& aNumPlugins);
sl@0
    63
sl@0
    64
	/**
sl@0
    65
	 * Retrieves the extended characteristics about a given implementation of an
sl@0
    66
	 * algorithm within the current plug-in DLL.
sl@0
    67
	 *	
sl@0
    68
	 * @param aImplementationUid The UID of the implementation requested
sl@0
    69
	 * @return A pointer to the extended characteristics, allocated on the heap,
sl@0
    70
	 * which should be deleted once the caller has finished with it.
sl@0
    71
	 */
sl@0
    72
	IMPORT_C static void GetExtendedCharacteristicsL(TUid aImplementationUid, CExtendedCharacteristics*&);
sl@0
    73
sl@0
    74
	/**
sl@0
    75
	 * Creates a new instance of an asymmetric cipher
sl@0
    76
	 *
sl@0
    77
	 * @param aPlugin A reference to a pointer that should be set to point to 
sl@0
    78
	 * the new asymmetric cipher object.
sl@0
    79
	 * @param aImplementationId The UID of the asymmetric cipher plug-in to instantiate.
sl@0
    80
	 * @param aKey The encryption/decryption key.
sl@0
    81
	 * @param aAlgorithmParams The parameters that are specific to a particular 
sl@0
    82
	 * algorithm. This is for extendibility and will normally be null.
sl@0
    83
	 * @return KErrNone if successful; otherwise, a system wide error code.
sl@0
    84
	 */
sl@0
    85
	IMPORT_C static void CreateAsymmetricCipherL(MAsymmetricCipher*& aPlugin,
sl@0
    86
												 TUid aImplementationId,
sl@0
    87
												 const CKey& aKey,
sl@0
    88
												 TUid aCryptoMode,
sl@0
    89
												 TUid aPaddingMode,
sl@0
    90
												 const CCryptoParams* aAlgorithmParams);
sl@0
    91
sl@0
    92
	/**
sl@0
    93
	 * Creates a new instance of an asymmetric signer.
sl@0
    94
     *
sl@0
    95
	 * @param aPlugin A reference to a pointer that should be set to point to 
sl@0
    96
	 * the new asymmetric signer object.
sl@0
    97
	 * @param aImplementationId The UID of the signer plug-in to instantiate.
sl@0
    98
	 * @param aKey The signing key.
sl@0
    99
	 * @param aAlgorithmParams The parameters that are specific to a particular 
sl@0
   100
	 * algorithm. This is for extendibility and will normally be null.
sl@0
   101
	 * @return KErrNone if successful; otherwise, a system wide error code.
sl@0
   102
	 */
sl@0
   103
	IMPORT_C static void CreateAsymmetricSignerL(MSigner*& aPlugin,
sl@0
   104
												 TUid aImplementationId,
sl@0
   105
												 const CKey& aKey,
sl@0
   106
												 TUid aPaddingMode,
sl@0
   107
												 const CCryptoParams* aAlgorithmParams);
sl@0
   108
sl@0
   109
	/**
sl@0
   110
	 * Creates a new instance of an asymmetric verifier.
sl@0
   111
	 *	
sl@0
   112
	 * @param aPlugin A reference to a pointer that should be set to point to 
sl@0
   113
	 * the new asymmetric verifier object.
sl@0
   114
	 * @param aImplementationId The UID of the verifier plug-in to instantiate.
sl@0
   115
	 * @param aKey The key to verify the signature with.
sl@0
   116
	 * @param aAlgorithmParams The parameters that are specific to a particular 
sl@0
   117
	 * algorithm. This is for extendibility and will normally be null.
sl@0
   118
	 * @return KErrNone if successful; otherwise, a system wide error code.
sl@0
   119
	 */
sl@0
   120
	IMPORT_C static void CreateAsymmetricVerifierL(MVerifier*& aPlugin,
sl@0
   121
												   TUid aImplementationId,
sl@0
   122
												   const CKey& aKey,
sl@0
   123
												   TUid aPaddingMode,
sl@0
   124
												   const CCryptoParams* aAlgorithmParams);
sl@0
   125
										
sl@0
   126
	/**
sl@0
   127
	 * @deprecated
sl@0
   128
	 * 
sl@0
   129
	 * Creates a new instance of a Hash object.
sl@0
   130
	 *
sl@0
   131
	 * @param aPlugin A reference to a pointer that should be set to point to 
sl@0
   132
	 * the new hash object.
sl@0
   133
	 * @param aImplementationId The UID of the hash plug-in to instantiate.
sl@0
   134
	 * @param aAlgorithmParams The parameters that are specific to a particular 
sl@0
   135
	 * algorithm. This is for extendibility and will normally be null.
sl@0
   136
	 * @return KErrNone if successful; otherwise, a system wide error code.
sl@0
   137
	 */
sl@0
   138
	IMPORT_C static void CreateHashL(MHash*& aPlugin,
sl@0
   139
									 TUid aImplementationId,
sl@0
   140
									 TUid aOperationMode,
sl@0
   141
									 const CKey* aKey,
sl@0
   142
									 const CCryptoParams* aAlgorithmParams);
sl@0
   143
	
sl@0
   144
	/**
sl@0
   145
	 * Creates a new instance of a key agreement system.
sl@0
   146
	 *
sl@0
   147
	 * @param aPlugin A reference to a pointer that should be set to point to 
sl@0
   148
	 * the new asymmetric key pair generator object.
sl@0
   149
	 * @param aImplementationId The UID of the key agreement plug-in to instantiate.
sl@0
   150
	 * @param aPrivateKey The private key to combine with the other parties public key
sl@0
   151
	 * during the agreement.
sl@0
   152
	 * @param aAlgorithmParams The parameters that are specific to a particular 
sl@0
   153
	 * algorithm. This is for extendibility and will normally be null.
sl@0
   154
	 *  @return KErrNone if successful; otherwise, a system wide error code.		   
sl@0
   155
	 */
sl@0
   156
	IMPORT_C static void CreateKeyAgreementL(MKeyAgreement*& aPlugin,
sl@0
   157
											 TUid aImplementationId,
sl@0
   158
											 const CKey& aPrivateKey,
sl@0
   159
											 const CCryptoParams* aAlgorithmParams);
sl@0
   160
sl@0
   161
	/**
sl@0
   162
	 * Creates a new instance of an asymmetric key pair generator.
sl@0
   163
	 *
sl@0
   164
	 * @param aPlugin A reference to a pointer that should be set to point to 
sl@0
   165
	 * the new asymmetric key pair generator object.
sl@0
   166
	 * @param aImplementationId The UID of the verifier plug-in to instantiate.
sl@0
   167
	 * @param aAlgorithmParams The parameters that are specific to a particular 
sl@0
   168
	 * algorithm. This is for extendibility and will normally be null.
sl@0
   169
	 * @return KErrNone if successful; otherwise, a system wide error code.
sl@0
   170
	 */
sl@0
   171
	IMPORT_C static void CreateKeyPairGeneratorL(MKeyPairGenerator*& aPlugin,
sl@0
   172
												 TUid aImplementationId,
sl@0
   173
												 const CCryptoParams* aAlgorithmParams);
sl@0
   174
sl@0
   175
	/**
sl@0
   176
	 * Creates a new instance of a Random object.
sl@0
   177
	 *
sl@0
   178
	 * @param aPlugin A reference to a pointer that should be set to point to the new random object.
sl@0
   179
	 * @param aImplementationId The UID of the random plug-in to instantiate.
sl@0
   180
	 * @param aAlgorithmParams The parameters that are specific to a particular 
sl@0
   181
	 * algorithm. This is for extendibility and will normally be null.
sl@0
   182
	 *  @return KErrNone if successful; otherwise, a system wide error code.
sl@0
   183
	 */
sl@0
   184
	IMPORT_C static void CreateRandomL(MRandom*& aPlugin,
sl@0
   185
									   TUid aImplementationId,
sl@0
   186
									   const CCryptoParams* aAlgorithmParams);
sl@0
   187
	
sl@0
   188
	/**
sl@0
   189
	 * Creates a new instance of a symmetric cipher
sl@0
   190
	 *
sl@0
   191
	 * @param aPlugin A reference to a pointer that should be set to point to 
sl@0
   192
	 * the new asymmetric object.
sl@0
   193
	 * @param aImplementationId The UID of the symmetric cipher plug-in to instantiate.
sl@0
   194
	 * @param aKey The encryption/decryption key.
sl@0
   195
	 * @param aCryptoMode Encrypt or Decrypt.
sl@0
   196
	 * @param aOperationMode the block cipher mode to use ECB, CBC, CTR etc
sl@0
   197
	 * @param aPadding the padding scheme to use.
sl@0
   198
	 * @param aAlgorithmParams The parameters that are specific to a particular 
sl@0
   199
	 * algorithm. This is for extendibility and will normally be null.
sl@0
   200
	 * @return KErrNone if successful; otherwise, a system wide error code.
sl@0
   201
	 */
sl@0
   202
    IMPORT_C static void CreateSymmetricCipherL(MSymmetricCipher*& aPlugin,
sl@0
   203
												TUid aImplementationId,
sl@0
   204
												const CKey& aKey,
sl@0
   205
												TUid aCryptoMode,
sl@0
   206
												TUid aOperationMode,
sl@0
   207
												TUid aPadding,
sl@0
   208
												const CCryptoParams* aAlgorithmParams);
sl@0
   209
sl@0
   210
   /**
sl@0
   211
	* Creates a new instance of an asymmetric cipher
sl@0
   212
	*
sl@0
   213
	* @param aPlugin A reference to a pointer that should be set to point to 
sl@0
   214
	* the new asymmetric cipher object.
sl@0
   215
	* @param aImplementationId The UID of the asymmetric cipher plug-in to instantiate.
sl@0
   216
	* @param aKey The encryption/decryption key.
sl@0
   217
	* @param aAlgorithmParams The parameters that are specific to a particular 
sl@0
   218
	* algorithm. This is for extendibility and will normally be null.
sl@0
   219
	* @return KErrNone if successful; otherwise, a system wide error code.
sl@0
   220
	
sl@0
   221
   IMPORT_C static void CreateAsyncAsymmetricCipherL(MAsyncAsymmetricCipher*& aPlugin,
sl@0
   222
		   											 TUid aImplementationId,
sl@0
   223
		   											 const CKey& aKey,
sl@0
   224
		   											 const CCryptoParams* aAlgorithmParams);
sl@0
   225
   */
sl@0
   226
    
sl@0
   227
   /**
sl@0
   228
	* Creates a new instance of an asymmetric signer.
sl@0
   229
	*
sl@0
   230
	* @param aPlugin A reference to a pointer that should be set to point to 
sl@0
   231
	* the new asymmetric signer object.
sl@0
   232
	* @param aImplementationId The UID of the signer plug-in to instantiate.
sl@0
   233
	* @param aKey The signing key.
sl@0
   234
	* @param aAlgorithmParams The parameters that are specific to a particular 
sl@0
   235
	* algorithm. This is for extendibility and will normally be null.
sl@0
   236
	* @return KErrNone if successful; otherwise, a system wide error code.
sl@0
   237
	
sl@0
   238
   IMPORT_C static void CreateAsyncAsymmetricSignerL(MAsyncSigner*& aPlugin,
sl@0
   239
		   											 TUid aImplementationId,
sl@0
   240
		   											 const CKey& aKey,
sl@0
   241
		   											 const CCryptoParams* aAlgorithmParams);
sl@0
   242
	*/
sl@0
   243
    
sl@0
   244
   /**
sl@0
   245
    * Creates a new instance of an asymmetric verifier.
sl@0
   246
	*
sl@0
   247
	* @param aPlugin A reference to a pointer that should be set to point to 
sl@0
   248
	* the new asymmetric verifier object.
sl@0
   249
	* @param aImplementationId The UID of the verifier plug-in to instantiate.
sl@0
   250
	* @param aKey The key to verify the signature with.
sl@0
   251
	* @param aAlgorithmParams The parameters that are specific to a particular 
sl@0
   252
	* algorithm. This is for extendibility and will normally be null.
sl@0
   253
	* @return KErrNone if successful; otherwise, a system wide error code.
sl@0
   254
	
sl@0
   255
   IMPORT_C static void CreateAsyncAsymmetricVerifierL(MAsyncVerifier*& aPlugin,
sl@0
   256
		   											   TUid aImplementationId,
sl@0
   257
		   											   const CKey& aKey,
sl@0
   258
		   											   const CCryptoParams* aAlgorithmParams);
sl@0
   259
	*/
sl@0
   260
   
sl@0
   261
   /**
sl@0
   262
    * @deprecated
sl@0
   263
    * 
sl@0
   264
    * Creates a new instance of a Hash object.
sl@0
   265
    *	
sl@0
   266
    * @param aPlugin A reference to a pointer that should be set to point to 
sl@0
   267
    * the new hash object.
sl@0
   268
    * @param aImplementationId The UID of the hash plug-in to instantiate.
sl@0
   269
    * @param aAlgorithmParams The parameters that are specific to a particular 
sl@0
   270
    * algorithm. This is for extendibility and will normally be null.
sl@0
   271
    * @return KErrNone if successful; otherwise, a system wide error code.
sl@0
   272
    
sl@0
   273
   IMPORT_C static void CreateAsyncHashL(MAsyncHash*& aPlugin,
sl@0
   274
		   								 TUid aImplementationId,
sl@0
   275
		   								 TUid aOperationMode,
sl@0
   276
									 	 const CKey* aKey,
sl@0
   277
		   								 const CCryptoParams* aAlgorithmParams);
sl@0
   278
  	*/
sl@0
   279
    
sl@0
   280
   /**
sl@0
   281
    * Creates a new instance of a key agreement system.
sl@0
   282
    *
sl@0
   283
    * @param aPlugin A reference to a pointer that should be set to point to 
sl@0
   284
    * the new asymmetric key pair generator object.
sl@0
   285
    * @param aImplementationId The UID of the key agreement plug-in to instantiate.
sl@0
   286
    * @param aKey The private key to combine with the other parties public key
sl@0
   287
    * during the agreement.
sl@0
   288
    * @param aAlgorithmParams The parameters that are specific to a particular 
sl@0
   289
    * algorithm. This is for extendibility and will normally be null.
sl@0
   290
    * @return KErrNone if successful; otherwise, a system wide error code.		   
sl@0
   291
   	
sl@0
   292
   IMPORT_C static void CreateAsyncKeyAgreementL(MAsyncKeyAgreement*& aPlugin,
sl@0
   293
		   										 TUid aImplementationId,
sl@0
   294
		   										 const CKey& aPrivateKey,
sl@0
   295
		   										 const CCryptoParams* aAlgorithmParams);
sl@0
   296
  	*/
sl@0
   297
    
sl@0
   298
   /**
sl@0
   299
    * Creates a new instance of an asymmetric key pair generator.
sl@0
   300
    *
sl@0
   301
    * @param aPlugin A reference to a pointer that should be set to point to 
sl@0
   302
    * the new asymmetric key pair generator object.
sl@0
   303
    * @param aImplementationId The UID of the verifier plug-in to instantiate.
sl@0
   304
    * @param aAlgorithmParams The parameters that are specific to a particular 
sl@0
   305
    * algorithm. This is for extendibility and will normally be null.
sl@0
   306
    * @return KErrNone if successful; otherwise, a system wide error code.
sl@0
   307
    	
sl@0
   308
   IMPORT_C static void CreateAsyncKeyPairGeneratorL(MAsyncKeyPairGenerator*& aPlugin,
sl@0
   309
		   											 TUid aImplementationId,
sl@0
   310
		   											 const CCryptoParams* aAlgorithmParams);
sl@0
   311
   */
sl@0
   312
    
sl@0
   313
   /**
sl@0
   314
	* Creates a new instance of a Random object.
sl@0
   315
	*
sl@0
   316
	* @param aPlugin A reference to a pointer that should be set to point to the new random object.
sl@0
   317
	* @param aImplementationId The UID of the random plug-in to instantiate.
sl@0
   318
	* @param aAlgorithmParams The parameters that are specific to a particular 
sl@0
   319
	* algorithm. This is for extendibility and will normally be null.
sl@0
   320
	* @return KErrNone if successful; otherwise, a system wide error code.
sl@0
   321
	
sl@0
   322
   IMPORT_C static void CreateAsyncRandomL(MAsyncRandom*& aPlugin,
sl@0
   323
		   								   TUid aImplementationId,
sl@0
   324
		   								   const CCryptoParams* aAlgorithmParams);
sl@0
   325
	*/
sl@0
   326
sl@0
   327
   /**
sl@0
   328
	* Creates a new instance of a symmetric cipher
sl@0
   329
	*	
sl@0
   330
	* @param aPlugin A reference to a pointer that should be set to point to 
sl@0
   331
	* the new asymmetric object.
sl@0
   332
	* @param aImplementationId The UID of the symmetric cipher plug-in to instantiate.
sl@0
   333
	* @param aKey The encryption/decryption key.
sl@0
   334
	* @param aAlgorithmParams The parameters that are specific to a particular 
sl@0
   335
	* algorithm. This is for extendibility and will normally be null.
sl@0
   336
	* @return KErrNone if successful; otherwise, a system wide error code.
sl@0
   337
	
sl@0
   338
   IMPORT_C static void CreateAsyncSymmetricCipherL(MAsyncSymmetricCipher*& aPlugin,
sl@0
   339
		   											TUid aImplementationId,
sl@0
   340
		   											const CKey& aKey,
sl@0
   341
		   											TUid aMode,
sl@0
   342
		   											TUid aPadding,
sl@0
   343
		   											const CCryptoParams* aAlgorithmParams);
sl@0
   344
    */
sl@0
   345
sl@0
   346
#ifdef SYMBIAN_SDP_IPSEC_VOIP_SUPPORT	
sl@0
   347
    
sl@0
   348
    /**
sl@0
   349
	 * Creates a new instance of a Hash object.
sl@0
   350
	 *
sl@0
   351
	 * @param aPlugin A reference to a pointer that should be set to point to 
sl@0
   352
	 * the new hash object.
sl@0
   353
	 * @param aImplementationId The UID of the hash plug-in to instantiate.
sl@0
   354
	 * @param aAlgorithmParams The parameters that are specific to a particular 
sl@0
   355
	 * algorithm. This is for extendibility and will normally be null.
sl@0
   356
	 * @return KErrNone if successful; otherwise, a system wide error code.
sl@0
   357
	 */
sl@0
   358
    IMPORT_C static void CreateHashL(MHash*& aPlugin,
sl@0
   359
									 TUid aImplementationId,
sl@0
   360
									 const CCryptoParams* aAlgorithmParams);
sl@0
   361
   /**
sl@0
   362
    * Creates a new instance of a Hash object.
sl@0
   363
    *	
sl@0
   364
    * @param aPlugin A reference to a pointer that should be set to point to 
sl@0
   365
	* the new hash object.
sl@0
   366
    * @param aImplementationId The UID of the hash plug-in to instantiate.
sl@0
   367
    * @param aAlgorithmParams The parameters that are specific to a particular 
sl@0
   368
    * algorithm. This is for extendibility and will normally be null.
sl@0
   369
    * @return KErrNone if successful; otherwise, a system wide error code.
sl@0
   370
	    
sl@0
   371
   IMPORT_C static void CreateAsyncHashL(MAsyncHash*& aPlugin,
sl@0
   372
		   								 TUid aImplementationId,
sl@0
   373
		   								 const CCryptoParams* aAlgorithmParams);
sl@0
   374
  	*/
sl@0
   375
	
sl@0
   376
   /**
sl@0
   377
    * Create a CMac instance (if implementation is software based)
sl@0
   378
	*
sl@0
   379
	* @param aMac 				The pointer to CMac
sl@0
   380
	* @param aImplementationId 	The specific hash or cipher plug-in to instantiate..
sl@0
   381
	* @param aKey             	The key for calculating message authentication code value. 
sl@0
   382
	*                         	Based on the algorithm used we will define the properties of the key.
sl@0
   383
	* @param aAlgorithmParams 	The parameters that are specific to a particular 
sl@0
   384
	*                         	algorithm. This is for extendibility and will normally be null. 	
sl@0
   385
	* @return                 	KErrNone if successful; otherwise, a system wide error code.
sl@0
   386
	*/
sl@0
   387
   IMPORT_C static void CreateMacL(MMac*& aPlugin,
sl@0
   388
								   const TUid aImplementationId,
sl@0
   389
								   const CKey& aKey,
sl@0
   390
								   const CCryptoParams* aAlgorithmParams);
sl@0
   391
sl@0
   392
   /**
sl@0
   393
	* Create a CAsyncMac instance
sl@0
   394
	*
sl@0
   395
	* @param aMac 				The pointer to CAsyncMac
sl@0
   396
	* @param aImplementationId 	The specific hash or cipher plug-in to instantiate..
sl@0
   397
	* @param aKey             	The key for calculating message authentication code value. 
sl@0
   398
	*                         	Based on the algorithm used we will define the properties of the key.
sl@0
   399
	* @param aAlgorithmParams 	The parameters that are specific to a particular 
sl@0
   400
	*                         	algorithm. This is for extendibility and will normally be null. 	
sl@0
   401
	* @return                 	KErrNone if successful; otherwise, a system wide error code.
sl@0
   402
	
sl@0
   403
   IMPORT_C static void CreateAsyncMacL(MAsyncMac*& aPlugin,
sl@0
   404
								   		const TUid aImplementationId,
sl@0
   405
								   		const CKey& aKey,
sl@0
   406
								   		const CCryptoParams* aAlgorithmParams);
sl@0
   407
	*/
sl@0
   408
   
sl@0
   409
#endif
sl@0
   410
   
sl@0
   411
	};
sl@0
   412
sl@0
   413
sl@0
   414
#endif // __PLUGINENTRY_H__