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

📄 chardwarecrypto.h

📁 ecom symbian os application development
💻 H
字号:
//
// CHardwareCrypto.h

#ifndef __CHARDWARECRYPTO_H__
#define __CHARDWARECRYPTO_H__

#include <Interface.h>

// An implementation of the CExampleInterface definition
class CHardwareCrypto : public CCryptoInterface
	{
public:
	static CHardwareCrypto* NewL();
	~CHardwareCrypto();
	// Implementation of CCryptoInterface
	virtual void EncryptL(const TDesC8& aPlaintext, const TDesC8& aKey, TDes8& aCiphertext, CCryptoInterface::TAlgorithm aAlg);
	virtual void DecryptL(const TDesC8& aCiphertext, const TDesC8& aKey, TDes8& aPlaintext, CCryptoInterface::TAlgorithm aAlg);
private:
	CHardwareCrypto();
	void ConstructL();
private:
	};  

#endif

⌨️ 快捷键说明

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