当前位置:主页>销售管理软件> 列表

如何将加密的图片解密?高手请进!!! 找a9财务软件免费版

仓库管理软件版1楼: 如何将加密的图片解密?有没有办法解决啊?

2楼: 有用到這個問題,要匯編語言裡幾條指令就解決了。
QQ:136293586 如a9财务软件免费版

3楼: 能具体说说怎么搞吗?

4楼: {=================================================================
功 能: 加密圖像文件
參 數: 源文件 目標文件
返回值: 成功 失敗
=================================================================}
Function PassWordImageFile(UnPassImagePathFile,PassImagePathFile:String;Mode:Boolean):Boolean;
var
f1,f2:File;
buf:byte;
_fSize,cut:integer;
ExistsFile:Boolean;
begin
If Mode And FileExists(UnPassImagePathFile) Then Begin // 進行加密圖像方式
AssignFile(f1,UnPassImagePathFile);
AssignFile(f2,PassImagePathFile);
ExistsFile:=True;
End Else
If Mode And FileExists(PassImagePathFile) Then Begin // 進行解密圖像方式
AssignFile(f1,PassImagePathFile);
AssignFile(f2,UnPassImagePathFile);
ExistsFile:=True;
End;

If ExistsFile Then Begin
Reset(f1,1);
ReWrite(f2,1);
_fSize := FileSize(f1);
try
while _fSize>0 do
begin
BlockRead(f1,buf,SizeOf(Buf),cut);
asm
not buf //取反加密,這裡可以改成別的算法
end;
BlockWrite(f2,buf,cut,cut);
dec(_fSize);
end;
finally
CloseFile(f2);
CloseFile(f1);
end;
Result:=True;
End Else Result:=False;
end;

5楼: 关键是不不知道别人的算法,如何解呢?有没有一种万能的方法,不管怎么加密的都能解开啊?

6楼: 你Y真扯蛋。

仓库管理软件版7楼: 楼主好可天真哦。。。各种加密算法都是不一样的。。有还以为这是个门锁呀。。。只要有万能锁钥就都可以开呀。。。

8楼: 没有高手吗?还是大家没有看到啊?

9楼: 看来只有楼主自已解决了,等你研究出万能解密算法后,也不要去解图片了,只接去解银行金库电子门锁的加密算法好了

10楼: 小弟求一个图象加密程序啊 小弟做毕业设计 就是加密和解密JPEG格式图象 从没碰到过 哪位大哥能给一个我参考一下 麻烦了 多谢了啊