cxlater 发表于 2011-6-8 11:24:25

MD5中文加密的方法

au3的各种md5的加密udf得到的结果跟其他软件得到的都不一样

求能获得中文加密字串结果与 http://www.51240.com/md5jiami/ 站点结果相同的方法

post的不要哦

急用谢谢

刚刚发了两个帖子发错了麻烦版主帮删一下

3mile 发表于 2011-6-8 11:24:26

没想过要收钱.
没上源码的原因是因为我认为网站加密的方法有点搞.既然楼主需要源码,双手奉上
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <ListViewConstants.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <Crypt.au3>
#include <GuiConstantsEx.au3>
#include <GuiListView.au3>

#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("MD5加密by-3mile", 580, 422, 192, 132)
$input = GUICtrlCreateInput("测试", 208, 16, 185, 24)
$Label1 = GUICtrlCreateLabel("要加密的字符串", 16, 16, 185, 24)
$Button1 = GUICtrlCreateButton("Button1", 416, 16, 73, 25)
$ListView1 = GUICtrlCreateListView("", 16, 48, 500, 345)
_GUICtrlListView_AddColumn($ListView1, "项目1", 150)
_GUICtrlListView_AddColumn($ListView1, "项目2", 350)

GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit
                Case $Button1
                        _GUICtrlListView_DeleteAllItems(GUICtrlGetHandle($ListView1))
                        local $array,$sPassword=GUICtrlRead($input)
                        $array="字符串"
                        $array=$sPassword
                        $temp=StringToBinary($sPassword,4)
                        $temp=_Crypt_HashData($temp, $CALG_MD5)
                        $array="MD5 32位 大写"
                        $array=StringTrimLeft($temp,2)
                        $array="MD5 32位 小写"
                        $array=StringLower($array)
                        $array="MD5 16位 大写"
                        $array=StringMid($array,9,16)
                        $array="MD5 16位 小写"
                        $array=StringMid($array,9,16)
                        _GUICtrlListView_AddArray($ListView1,$array)
        EndSwitch
WEnd

3mile 发表于 2011-6-8 13:48:34

先上编译好的.

cxlater 发表于 2011-6-8 18:28:21

{:face (239):}
楼上可以给出源码吗   因为这个问题我手上的事情暂停两天了
昨天用的站长之家post查询的结果返回   但是现在每组好几百个字符串需要处理 post力不从心
谢谢了

itljl 发表于 2011-6-8 18:46:49

回复 3# cxlater


给钱,自然给源码了。你发的是100元脚本交易贴

abc... 发表于 2011-6-8 19:20:41

{:face (411):}哈哈,二L的不差这点钱。。。。

cxlater 发表于 2011-6-8 20:11:35

回复cxlater


给钱,自然给源码了。你发的是100元脚本交易贴
itljl 发表于 2011-6-8 18:46 http://www.autoitx.com/images/common/back.gif

我发的是悬赏帖   谁给了答案金钱我自然会给

cxlater 发表于 2011-6-8 20:50:06

本帖最后由 cxlater 于 2011-6-8 20:58 编辑

{:face (411):}{:face (411):}

十分感谢

StringTrimLeft(_Crypt_HashData(StringToBinary($test,4), $CALG_MD5),2)

zysanjing1 发表于 2011-6-14 15:21:14

这个有意思,顶!

gmzlmxm 发表于 2011-9-5 03:27:14

http://www.pgpop.com/image/face1.gif我只是路过,不发表意见



























http://bbs.hangzhou.com.cn/images/default/sigline.gif
用醋洗脸可以美白吗

yorker0503 发表于 2011-10-17 11:50:57

给钱,就给源码,真理啊~~

tsmirs 发表于 2011-12-9 18:11:32

路过顶一下

jamer 发表于 2011-12-9 18:37:08

这个,学习一下。。

夜猫猫 发表于 2012-7-21 20:42:27

学习...........

smooth 发表于 2014-11-16 22:27:10

没想过要收钱.
没上源码的原因是因为我认为网站加密的方法有点搞.既然楼主需要源码,双手奉上
3mile 发表于 2011-6-8 11:24 http://www.autoitx.com/images/common/back.gif

好东西,今天我都找了一天了,在百度里搜索才转到论坛里。谢谢!
页: [1] 2
查看完整版本: MD5中文加密的方法