能力值:
( LV2,RANK:10 )
|
-
-
2 楼
Algo : NewDES by Robert Scott
Block : 8 bytes
Key : 15 bytes (120b)
encryption:
push offset password
call NewDES_SetEncryptKey
push offset plaintext
push offset ciphertext
call NewDES_Crypt
call NewDES_Clear
decryption:
push offset password
call NewDES_SetDecryptKey
push offset ciphertext
push offset plaintext
call NewDES_Crypt
call NewDES_Clear
24.03.2002 WiteG//xtreeme (witeg@poczta.fm, www.witeg.prv.pl)
DES written by drizz
.data
align 8
key db 043h, 029h, 07fh, 0adh, 038h, 0e3h, 073h, 0feh
Plaintext db 076h, 025h, 014h, 0b8h, 029h, 0bfh, 048h, 06ah
Ciphertext db 0eah, 067h, 06bh, 02ch, 0b7h, 0dbh, 02bh, 07ah
.code
invoke DESSetKeyEnc,offset key
invoke DESEncrypt,offset Plaintext,offset Plaintext
invoke DESSetKeyDec,offset key
invoke DESDecrypt,offset Plaintext,offset Plaintext
|
能力值:
( LV9,RANK:690 )
|
-
-
3 楼
怎么可能啊
des就是这样设计的
程序得按设计的规范来编码
|
能力值:
( LV12,RANK:370 )
|
-
-
4 楼
lz的数据不正确,
推荐个vckbase的小工具(我写的时候用它来查看,验证过数据是对的):
http://www.vckbase.com/document/viewdoc/?id=1657
|
能力值:
(RANK:1010 )
|
-
-
5 楼
多谢 ikki
你介绍的这个测试工具很不错
我上面的数据是《应用编码与计算机密码学》配套光盘中的一个软件,确实是错误的。
另外,《应用密码学》王衍波写的那本,关于DES部分的测试示例也有错误
真是倒霉,找到的资料都是有问题的
|
|
|