?? mycrypt.h
字號:
// MyCrypt.h: interface for the CMyCrypt class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MYCRYPT_H__55BD8B54_9B62_4069_9F43_118265A1DF8F__INCLUDED_)
#define AFX_MYCRYPT_H__55BD8B54_9B62_4069_9F43_118265A1DF8F__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CMyCrypt
{
public:
CMyCrypt();
virtual ~CMyCrypt();
public:
static CString MyEncrypt(CString S, WORD Key); // 加密函數
static CString MyDecrypt(CString S, WORD Key); // 解密函數
};
#endif // !defined(AFX_MYCRYPT_H__55BD8B54_9B62_4069_9F43_118265A1DF8F__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -