📄 doubleencryptor.h
字号:
// 加密类,继承于CEncryptor
#pragma once
#include "Encryptor.h"
class CDoubleEncryptor :
public CEncryptor
{
public:
CDoubleEncryptor(void);
~CDoubleEncryptor(void);
virtual int EncryptIt(int encryptee, int encryptor); // 加密函数,encryptee为被加密的,encryptor为加密密钥
virtual int DecryptIt(int packet, int encryptor); // 解密函数
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -