chardwarecrypto.h

来自「ecom symbian os application development」· C头文件 代码 · 共 24 行

H
24
字号
//
// 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 + =
减小字号Ctrl + -
显示快捷键?