rrypt.h
来自「偶作的毕业设计程序」· C头文件 代码 · 共 24 行
H
24 行
// 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 + =
减小字号Ctrl + -
显示快捷键?