📄 rrypt.h
字号:
// Rrypt.h: interface for the CRrypt class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_RRYPT_H__D38C33DB_D39D_42A3_8968_4F01F46EB39F__INCLUDED_)
#define AFX_RRYPT_H__D38C33DB_D39D_42A3_8968_4F01F46EB39F__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CCrypt
{
public:
CCrypt();
virtual ~CCrypt();
public:
static CString Encrypt(CString S,WORD Key);
static CString Decrypt(CString S,WORD Key);
};
#endif // !defined(AFX_RRYPT_H__D38C33DB_D39D_42A3_8968_4F01F46EB39F__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -