分享
 
 
 

一个只有17K的Delphi字符串加密程序源码

王朝delphi·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

program Window;

{

This is an example of making an application

without using the Forms unit. Forms.pas is the

Delphi unit that makes your programs so damn

huge! Forms.pas has all the code for translating

the forms you create with Delphi w/components

into windows. If you ask me, anything that adds

200k(@%#$!) to your app has got to be some damn

inefficient code.

GoRDy <gfody@jps.net>

www.jps.net/gfody

}

uses Windows, Messages;

{$R *.RES}

var

wClass: TWndClass; // class struct for main window

hFont, // handle of font

hInst, // handle of program (hinstance)

Handle, // handle of main window

hEncrypt, // handle of encrypt button

hDecrypt, // handle of decrypt button

hEdit, // handle of main edit

hLabel, // handle of password label

hPW: HWND; // handle of password edit

Msg: TMSG; // message struct

dEncrypt,

dDecrypt: Pointer; // default button procedures

(*------------------------------------------------*)

// This lines everything up

procedure Resize;

var

RCT:TRect;

begin

GetWindowRect(Handle,RCT);

MoveWindow(hPW,230,5,RCT.Right-RCT.Left-245,24,True);

MoveWindow(hEdit,5,34,RCT.Right-RCT.Left-20,RCT.Bottom-RCT.Top-66,True);

end;

(*------------------------------------------------*)

// This is to cleanup and stop the program

procedure ShutDown;

begin

DeleteObject(hFont);

UnRegisterClass('Sample Class',hInst);

ExitProcess(hInst); //end program

end;

(*------------------------------------------------*)

// Decrypts the text in hEdit with the text in hPW

procedure Decrypt;

var

x,i, // count variables

sText,sPW: Integer; // size of Text, PW

Text,PW: PChar; // buffer for Text, PW

begin

sText:=GetWindowTextLength(hEdit)+1;

sPW:=GetWindowTextLength(hPW)+1;

GetMem(Text,sText);

GetMem(PW,sPW);

GetWindowText(hEdit,Text,sText);

GetWindowText(hPW,PW,sPW);

x:=0; // initialize count

for i:=0 to sText-2 do

begin

Text[i]:=Chr(Ord(Text[i])-Ord(PW[x]));

Inc(x);

if x=(sPW-1)then x:=0;

end;

SetWindowText(hEdit,Text);

FreeMem(Text);

FreeMem(PW);

end;

(*------------------------------------------------*)

// Encrypts the text in hEdit with the text in hPW

procedure Encrypt;

var

x,i, // count variables

sText,sPW: Integer; // size of Text, PW

Text,PW: PChar; // buffer for Text, PW

begin

sText:=GetWindowTextLength(hEdit)+1;

sPW:=GetWindowTextLength(hPW)+1;

GetMem(Text,sText);

GetMem(PW,sPW);

GetWindowText(hEdit,Text,sText);

GetWindowText(hPW,PW,sPW);

x:=0; // initialize count

for i:=0 to sText-2 do

begin

Text[i]:=Chr(Ord(Text[i])+Ord(PW[x]));

Inc(x);

if x=(sPW-1)then x:=0;

end;

SetWindowText(hEdit,Text);

FreeMem(Text);

FreeMem(PW);

end;

(*------------------------------------------------*)

// This function processes every message sent to the Encrypt Button

function EncryptProc(hWnd,Msg,wParam,lParam:Longint):Longint; stdcall;

var

i: Integer;

begin

// Always pass the message to the Default procedure

Result:=CallWindowProc(dEncrypt,hWnd,Msg,wParam,lParam);

case Msg of

// If the user presses TAB we're gunna switch the

// focus over to the Decrypt button.

WM_KEYDOWN: if wParam=9 then SetFocus(hDecrypt);

end;

end;

(*------------------------------------------------*)

// This function processes every message sent to the Decrypt Button

function DecryptProc(hWnd,Msg,wParam,lParam:Longint):Longint; stdcall;

begin

// Always pass the message to the Default procedure

Result:=CallWindowProc(dEncrypt,hWnd,Msg,wParam,lParam);

case Msg of

// if the user presses TAB we're gunna switch

// the focus back to the Encrypt button.

WM_KEYDOWN: if wParam=9 then SetFocus(hEncrypt);

end;

end;

(*------------------------------------------------*)

// This function processes every message sent to our Main window

function WindowProc(hWnd,Msg,wParam,lParam:Longint):Longint; stdcall;

begin

// Always pass the message to the Default procedure

Result:=DefWindowProc(hWnd,Msg,wParam,lParam);

case Msg of

WM_SIZE: Resize;

// When buttons are clicked the message is passed to

// the parent window, so we handle it here.

WM_COMMAND: if lParam=hEncrypt then Encrypt

else if lParam=hDecrypt then Decrypt;

WM_DESTROY: ShutDown;

end;

end;

(*------------------------------------------------*)

// This is the main program function (WinMain)

begin

hInst:=GetModuleHandle(nil); // get the application instance

// hInstance returns zilch

with wClass do

begin

Style:= CS_PARENTDC;

hIcon:= LoadIcon(hInst,'MAINICON');

lpfnWndProc:= @WindowProc;

hInstance:= hInst;

hbrBackground:= COLOR_BTNFACE+1;

lpszClassName:= 'Sample Class';

hCursor:= LoadCursor(0,IDC_ARROW);

end;

// Once our class is registered we

// can start making windows with it

RegisterClass(wClass);

// Create our main window

Handle:=CreateWindow(

'Sample Class', // Registered Class Name

'Encrypter - By: GoRDy', // Title of Window

WS_OVERLAPPEDWINDOW or // Basic Window Style

WS_VISIBLE, // Make it Visible

10, // Left

10, // Top

400, // Width

300, // Height

0, // Parent Window Handle

0, // Handle of Menu

hInst, // Application Instance

nil); // Structure for Creation Data

// Create the Encrypt button

hEncrypt:=CreateWindow(

'Button',

'Encrypt',

WS_VISIBLE or WS_CHILD or BS_PUSHLIKE or BS_TEXT,

5,5,65,24,Handle,0,hInst,nil);

// Create the Decrypt button

hDecrypt:=CreateWindow(

'Button',

'Decrypt',

WS_VISIBLE or WS_CHILD or BS_PUSHLIKE or BS_TEXT,

75,5,65,24,Handle,0,hInst,nil);

// Create the main Edit

hEdit:=CreateWindowEx(

WS_EX_CLIENTEDGE, // this EX style is for the beveled edge

'Edit',

'',

WS_VISIBLE or WS_CHILD or ES_LEFT or ES_MULTILINE or ES_WANTRETURN or ES_AUTOVSCROLL or WS_VSCROLL,

5,34,380,234,Handle,0,hInst,nil);

// Create the password Edit

hPW:=CreateWindowEx(

WS_EX_CLIENTEDGE,

'Edit',

'',

WS_VISIBLE or WS_CHILD or ES_LEFT or ES_AUTOHSCROLL or ES_PASSWORD,

230,5,155,24,Handle,0,hInst,nil);

hLabel:=CreateWindow(

'Static',

'Password:',

WS_VISIBLE or WS_CHILD or SS_LEFT,

160,10,70,20,Handle,0,hInst,nil);

// Create a custom font for our window otherwise

// everything would use the system font (blech!)

hFont:=CreateFont(

-12, // Height

0, // Width

0, // Angle of Rotation

0, // Orientation

0, // Weight

0, // Italic

0, // Underline

0, // Strike Out

DEFAULT_CHARSET, // Char Set

OUT_DEFAULT_PRECIS, // Precision

CLIP_DEFAULT_PRECIS, // Clipping

DEFAULT_QUALITY, // Render Quality

DEFAULT_PITCH or FF_DONTCARE, // Pitch & Family

'MS Sans Serif'); // Font Name

// Set the fonts for all our controls

SendMessage(hEncrypt,WM_SETFONT,hFont,0);

SendMessage(hDecrypt,WM_SETFONT,hFont,0);

SendMessage(hEdit,WM_SETFONT,hFont,0);

SendMessage(hPW,WM_SETFONT,hFont,0);

SendMessage(hLabel,WM_SETFONT,hFont,0);

// Subclass Encrypt Button (assign it a custom WindowProc)

dEncrypt:=Pointer(GetWindowLong(hEncrypt,GWL_WNDPROC));

SetWindowLong(hEncrypt,GWL_WNDPROC,Longint(@EncryptProc));

// Subclass Decrypt Button

dDecrypt:=Pointer(GetWindowLong(hDecrypt,GWL_WNDPROC));

SetWindowLong(hDecrypt,GWL_WNDPROC,Longint(@DecryptProc));

// The reason I don't subclass the Edit controls here

// is because they don't do anything custom. If I wanted

// them to Beep or something whenever you typed a "G" then

// I would subclass them.

// Focus on first control (otherwise people with no mouse are screwed)

SetFocus(hEncrypt);

// Now we loop GetMessage to process each Message in

// our main window's message list. Every time the main

// window recieves a message its added to the list, so

// this loop here will eventually process it.

while(GetMessage(Msg,Handle,0,0))do

begin

TranslateMessage(Msg); // Translate any keyboard Msg's

DispatchMessage(Msg); // Send it to our WindowProc

end; // for processing.

end.

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有