?? stdafx.h
字號:
// stdafx.h : 標準系統包含文件的包含文件,
// 或是常用但不常更改的項目特定的包含文件
//
#pragma once
#include <iostream>
#include <tchar.h>
// TODO: 在此處引用程序要求的附加頭文件
// DES.h: interface for the DES class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_DES_H__30E4BD94_DC18_40DA_88E2_7C79D13DF16E__INCLUDED_)
#define AFX_DES_H__30E4BD94_DC18_40DA_88E2_7C79D13DF16E__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
typedef int INT32;
typedef char INT8;
typedef unsigned char ULONG8;
typedef unsigned short ULONG16;
typedef unsigned long ULONG32;
enum {ENCODE,DECODE};
class DES
{
public:
static bool DESCODE(char *Out, char *In, long datalen, const char *Key, int keylen, bool Type);
DES();
virtual ~DES();
};
#endif // !defined(AFX_DES_H__30E4BD94_DC18_40DA_88E2_7C79D13DF16E__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -