资源简介
基于OpenSSL的一个加密解密工具,涵盖了AES等主流对称密码算法。有源码和可执行文件。
代码片段和文件信息
#include “stdafx.h“
#include
#include
#include “resource.h“
#include “MainDlg.h“
#include “DialogPass.h“
#include
#include
/****************************************************************************
该文件实现对口令处理对话框的操作
**************************************************************************/
BOOL WINAPI DialogPass_Proc(HWND hWnd UINT uMsg WPARAM wParam LPARAM lParam)
{
switch(uMsg)
{
HANDLE_MSG(hWnd WM_INITDIALOG DialogPass_OnInitDialog);
HANDLE_MSG(hWnd WM_COMMAND DialogPass_OnCommand);
HANDLE_MSG(hWndWM_CLOSE DialogPass_OnClose);
}
return FALSE;
}
BOOL DialogPass_OnInitDialog(HWND hwnd HWND hwndFocus LPARAM lParam)
{
//TCHAR * buff = (TCHAR *)(lParam);
SetWindowLong(hwndGWL_USERDATAlParam);
return TRUE;
}
void DialogPass_OnCommand(HWND hwnd int id HWND hwndCtl UINT codeNotify)
{
switch(id)
{
case IDC_PASSOK:
{
TCHAR * buff = (TCHAR *)GetWindowLong(hwndGWL_USERDATA);
GetDlgItemText(hwndIDC_EDITINPUTPASSbuffEVP_MAX_KEY_LENGTH);
EndDialog(hwnd 1);
}
break;
case IDC_PASSCANCEL:
{
EndDialog(hwnd 0);
}
break;
default:
break;
}
}
void DialogPass_OnClose(HWND hwnd)
{
EndDialog(hwnd 0);
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 10378 2010-08-22 18:52 文件保险箱2\Debug\DIALOGPASS.obj
文件 0 2010-08-02 16:39 文件保险箱2\Debug\DIALOGPASS.sbr
文件 17711 2010-08-05 22:31 文件保险箱2\Debug\Encrypt_Decrypt.obj
文件 0 2010-08-02 16:39 文件保险箱2\Debug\Encrypt_Decrypt.sbr
文件 7708 2010-08-05 22:31 文件保险箱2\Debug\Main.obj
文件 0 2010-08-02 16:39 文件保险箱2\Debug\Main.sbr
文件 24534 2012-02-27 21:13 文件保险箱2\Debug\MainDlg.obj
文件 0 2010-08-02 16:39 文件保险箱2\Debug\MainDlg.sbr
文件 5516 2010-08-22 18:49 文件保险箱2\Debug\resource.res
文件 60357 2010-08-05 22:31 文件保险箱2\Debug\StdAfx.obj
文件 474601 2010-08-02 16:30 文件保险箱2\Debug\StdAfx.sbr
文件 214016 2012-02-27 21:13 文件保险箱2\Debug\vc60.idb
文件 217088 2011-07-08 21:55 文件保险箱2\Debug\vc60.pdb
文件 2933760 2010-08-02 16:39 文件保险箱2\Debug\文件保险箱.bsc
文件 106604 2012-02-27 21:13 文件保险箱2\Debug\文件保险箱.exe
文件 96884 2012-02-27 21:13 文件保险箱2\Debug\文件保险箱.ilk
文件 3016124 2011-07-08 21:55 文件保险箱2\Debug\文件保险箱.pch
文件 222208 2011-07-08 21:55 文件保险箱2\Debug\文件保险箱.pdb
文件 1377 2010-08-22 18:52 文件保险箱2\DIALOGPASS.cpp
文件 350 2010-07-31 09:29 文件保险箱2\DialogPass.h
文件 6580 2010-07-31 09:26 文件保险箱2\Encrypt_Decrypt.cpp
文件 2238 2010-07-31 09:22 文件保险箱2\favicon.ico
文件 766 2010-07-31 09:17 文件保险箱2\icon1.ico
文件 489 2010-07-31 09:17 文件保险箱2\Main.cpp
文件 10096 2010-08-05 22:26 文件保险箱2\MainDlg.cpp
文件 901 2010-07-31 09:29 文件保险箱2\MainDlg.h
文件 1245 2010-07-31 09:32 文件保险箱2\ReadMe.txt
文件 1710 2010-08-05 22:31 文件保险箱2\Release\DIALOGPASS.obj
文件 3406 2010-08-05 22:31 文件保险箱2\Release\Encrypt_Decrypt.obj
文件 692 2010-08-05 22:31 文件保险箱2\Release\Main.obj
............此处省略22个文件信息
评论
共有 条评论