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

📄 csoftwarecrypto.h

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

#ifndef __CSOFTWARECRYPTO_H__
#define __CSOFTWARECRYPTO_H__

#include <Interface.h>

// An implementation of the CExampleInterface definition
class CSoftwareCrypto : public CCryptoInterface
{
public:
	static CSoftwareCrypto* NewL();
	~CSoftwareCrypto();
	// 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:
	CSoftwareCrypto();
	void ConstructL();
private:
};

#endif

⌨️ 快捷键说明

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