rsa.bid

来自「BREW SDK 3.1。BREW应用程序的开发包。」· BID 代码 · 共 56 行

BID
56
字号
#ifndef RSA_BID
#define RSA_BID

#define AEECLSID_RSA_DSP    	0x0102daa3
#define AEECLSID_RSA_BEST    	0x0102dec1


/*======================================================================
  Class DOCUMENTATION
=======================================================================

Interface Name: RSA

Description:
   These classes identify the currently available RSA implementations.
   The client may pick from three different approaches here based on the
   value of the CLSID used:
   
*   
AEECLSID_RSA

Description:
   This CLSID will always result in using the BREW software based mod exp 
   implementation. This CLSID is univerally supported across all platforms
   that include support for RSA.

*   
AEECLSID_RSA_DSP

Description:
   The CLSID for RSA using DSP based BN. If the client requests h/w based RSA
   BN implementation and DSP support is not avaliable on the platform, then 
   instantiation will fail with EUNSUPPORTED. If the client does not wish 
   such a failure to occur, and instead would prefer a failover to the S/W 
   based implementation, then they should use the CLSID below.

*   
AEECLSID_RSA_BEST

Description:
   This CLSID allows the client to select the best implementation. If the DSP 
   implementation is  supported on the platform, it is used, since it is assumed 
   to be faster than software. If the DSP is not supported, then a failover to 
   the BREW software based implementation is performed.

*   
   
See also: AEERSA.h
          AEEClassIDs.h 
   
=====================================================================
*/

#endif //RSA_BID

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?