csoftwarecrypto.h
来自「ecom symbian os application development」· C头文件 代码 · 共 25 行
H
25 行
//
// 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 + =
减小字号Ctrl + -
显示快捷键?