⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rsa.bid

📁 BREW SDK 3.1。BREW应用程序的开发包。
💻 BID
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -