?? csoftwarecrypto.h
字號(hào):
//
// 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
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -