软件加密的一些问题。(100分)

D

dadabox

Unregistered / Unconfirmed
GUEST, unregistred user!
请问DES加密,能实现生成多少位?我想将字串加密后变成我自己定义的长度,如8位,25位,
甚至128位,而且要全部是英文大小写字母,以及十个阿拉伯数字,不要其他字符(如标点符
号),有加密函数和解密函数,最好复杂一点的。哪位朋友能帮我?
这个问题很紧迫!!!!!!一定要符合我上面的要求!我有DES的加密和解密方法,但觉
得不太好。哪位朋友如果能让DES也能达到上述功能,也行!
 
DES算法只能加密长度为64Bits的整数倍的信息,且加密前后信息的长度不会发生变化。
如果希望对任意长度的信息进行运算之后将其变成固定长度的密文,可以采用Hash算法。
——但是,如果原文的长度大于密文的长度,理论上就不可能将加密后的信息成功的解密。
除非原文符合某种规则(比如首字母一定是'A'),使得它的实际信息量比密文少,还是
很有可能恢复的。试想一下将Integer(32Bits)(也就是说明文有40多亿种可能)加密为Byte
(8Bits)(密文仅有256种可能),加密当然没问题,但是可能准确恢复吗?
>>全部是英文大小写字母,以及十个阿拉伯数字
用IntToHex即可,每两个字符表示一个Byte的信息,很方便。
请参考: http://www.delphibbs.com/delphibbs/dispq.asp?lid=631130
 
我也一直在找这个答案。关注,加入收藏
 
不懂! 学习!
 
creation-zy,你能不能再讲详细一点?我对加密,解密是一点都不懂。:(
如果你有源代码最好,能否贴点出来?我也在网上看过许多关于DES的源代码,可看不太懂。
 
http://yxme.net/encrypt_src/
去看看你会收获良多
 
>>对加密,解密是一点都不懂
也难为你了...
思路:
将要被加密的字符串放到一个固定长度的Buf中去,然后对这个数组进行分段DES加密
(每8Bytes一组),解密反过来就可以了。如果字符串的长度小于Buf的长度,就在字符串
的末尾补一些容易识别的ASCII码。
eg:
字符串:'abcdefghijk'——长度为11,Buf的长度为16,在写入Buf的时候,进行如下处理:
1.将字符串Copy至Buf的头部 Buf[0]..Buf[10]
2.将Buf[11]置为 #0 ——字符串终止标志
3.其后用 #1 #2 #3。。。填写下去,直到Buf的末端
这样Buf的内容就是: 'abcdefghijk'#0#1#2#3#4
然后对Buf[0..7]和Buf[8..15]分别进行DES加密
解密过程:
1.对Buf[0..7]和Buf[8..15]分别进行DES解密
2.从Buf头开始,寻找#0,找到之后,将#0之前的部分Copy出来——这就是原来的字符串。
如果没有找到#0,则说明字符串刚好填满Buf,将其整个Buf都Copy出来即可。

>>许多关于DES的源代码,可看不太懂
看懂干什么??能够拿来用就可以了!
 
creation-zy,非常谢谢你!能否再帮我一下。我将我这儿的DES代码贴上来,你帮我注解一下,
我就知道怎么改明文以及怎么输出只有字母和数字的密码了。谢谢!
我也是从大富翁上抄的。
unit DesUnit;
interface
procedure DES(var Input;
var Output;
var Key;
Encrypt : Boolean);
implementation
procedure DES(var Input;
var Output;
var Key;
Encrypt : Boolean);
const
IP : array [1..64] Of Byte = (58,50,42,34,26,18,10,2,
60,52,44,36,28,20,12,4,
62,54,46,38,30,22,14,6,
64,56,48,40,32,24,16,8,
57,49,41,33,25,17, 9,1,
59,51,43,35,27,19,11,3,
61,53,45,37,29,21,13,5,
63,55,47,39,31,23,15,7);
InvIP : Array [1..64] Of Byte = (40, 8,48,16,56,24,64,32,
39, 7,47,15,55,23,63,31,
38, 6,46,14,54,22,62,30,
37, 5,45,13,53,21,61,29,
36, 4,44,12,52,20,60,28,
35, 3,43,11,51,19,59,27,
34, 2,42,10,50,18,58,26,
33, 1,41, 9,49,17,57,25);
E : Array [1..48] Of Byte = (32, 1, 2, 3, 4, 5,
4, 5, 6, 7, 8, 9,
8, 9,10,11,12,13,
12,13,14,15,16,17,
16,17,18,19,20,21,
20,21,22,23,24,25,
24,25,26,27,28,29,
28,29,30,31,32, 1);
P : Array [1..32] Of Byte = (16, 7,20,21,
29,12,28,17,
1,15,23,26,
5,18,31,10,
2, 8,24,14,
32,27, 3, 9,
19,13,30, 6,
22,11, 4,25);
SBoxes : Array [1..8,0..3,0..15] Of Byte =
(((14, 4,13, 1, 2,15,11, 8, 3,10, 6,12, 5, 9, 0, 7),
( 0,15, 7, 4,14, 2,13, 1,10, 6,12,11, 9, 5, 3, 8),
( 4, 1,14, 8,13, 6, 2,11,15,12, 9, 7, 3,10, 5, 0),
(15,12, 8, 2, 4, 9, 1, 7, 5,11, 3,14,10, 0, 6,13)),
((15, 1, 8,14, 6,11, 3, 4, 9, 7, 2,13,12, 0, 5,10),
( 3,13, 4, 7,15, 2, 8,14,12, 0, 1,10, 6, 9,11, 5),
( 0,14, 7,11,10, 4,13, 1, 5, 8,12, 6, 9, 3, 2,15),
(13, 8,10, 1, 3,15, 4, 2,11, 6, 7,12, 0, 5,14, 9)),
((10, 0, 9,14, 6, 3,15, 5, 1,13,12, 7,11, 4, 2, 8),
(13, 7, 0, 9, 3, 4, 6,10, 2, 8, 5,14,12,11,15, 1),
(13, 6, 4, 9, 8,15, 3, 0,11, 1, 2,12, 5,10,14, 7),
( 1,10,13, 0, 6, 9, 8, 7, 4,15,14, 3,11, 5, 2,12)),
(( 7,13,14, 3, 0, 6, 9,10, 1, 2, 8, 5,11,12, 4,15),
(13, 8,11, 5, 6,15, 0, 3, 4, 7, 2,12, 1,10,14, 9),
(10, 6, 9, 0,12,11, 7,13,15, 1, 3,14, 5, 2, 8, 4),
( 3,15, 0, 6,10, 1,13, 8, 9, 4, 5,11,12, 7, 2,14)),
(( 2,12, 4, 1, 7,10,11, 6, 8, 5, 3,15,13, 0,14, 9),
(14,11, 2,12, 4, 7,13, 1, 5, 0,15,10, 3, 9, 8, 6),
( 4, 2, 1,11,10,13, 7, 8,15, 9,12, 5, 6, 3, 0,14),
(11, 8,12, 7, 1,14, 2,13, 6,15, 0, 9,10, 4, 5, 3)),
((12, 1,10,15, 9, 2, 6, 8, 0,13, 3, 4,14, 7, 5,11),
(10,15, 4, 2, 7,12, 9, 5, 6, 1,13,14, 0,11, 3, 8),
( 9,14,15, 5, 2, 8,12, 3, 7, 0, 4,10, 1,13,11, 6),
( 4, 3, 2,12, 9, 5,15,10,11,14, 1, 7, 6, 0, 8,13)),
(( 4,11, 2,14,15, 0, 8,13, 3,12, 9, 7, 5,10, 6, 1),
(13, 0,11, 7, 4, 9, 1,10,14, 3, 5,12, 2,15, 8, 6),
( 1, 4,11,13,12, 3, 7,14,10,15, 6, 8, 0, 5, 9, 2),
( 6,11,13, 8, 1, 4,10, 7, 9, 5, 0,15,14, 2, 3,12)),
((13, 2, 8, 4, 6,15,11, 1,10, 9, 3,14, 5, 0,12, 7),
( 1,15,13, 8,10, 3, 7, 4,12, 5, 6,11, 0,14, 9, 2),
( 7,11, 4, 1, 9,12,14, 2, 0, 6,10,13,15, 3, 5, 8),
( 2, 1,14, 7, 4,10, 8,13,15,12, 9, 0, 3, 5, 6,11)));
PC_1 : Array [1..56] Of Byte = (57,49,41,33,25,17, 9,
1,58,50,42,34,26,18,
10, 2,59,51,43,35,27,
19,11, 3,60,52,44,36,
63,55,47,39,31,23,15,
7,62,54,46,38,30,22,
14, 6,61,53,45,37,29,
21,13, 5,28,20,12, 4);
PC_2 : Array [1..48] Of Byte = (14,17,11,24, 1, 5,
3,28,15, 6,21,10,
23,19,12, 4,26, 8,
16, 7,27,20,13, 2,
41,52,31,37,47,55,
30,40,51,45,33,48,
44,49,39,56,34,53,
46,42,50,36,29,32);
ShiftTable : Array [1..16] Of Byte = (1,1,2,2,2,2,2,2,1,2,2,2,2,2,2,1);
Var
InputValue : Array [1..64] Of Byte;
OutputValue : Array [1..64] Of Byte;
RoundKeys : Array [1..16,1..48] Of Byte;
L, R, FunctionResult : Array [1..32] Of Byte;
C, D : Array [1..28] Of Byte;
Function GetBit (Var Data;
Index : Byte) : Byte;
Var
Bits : Array [0..7] Of Byte ABSOLUTE Data;
begin
Dec (Index);
If Bits[Index DIV 8] And (128 SHR (Index MOD 8))>0 then
GetBit:=1 else
GetBit:=0;
end;
{GetBit}
Procedure SetBit (Var Data;
Index, Value : Byte);
Var
Bits : Array [0..7] Of Byte ABSOLUTE Data;
Bit : Byte;
begin
Dec (Index);
Bit:=128 SHR (Index MOD 8);
Case Value Of
0 : Bits[Index DIV 8]:=Bits[Index DIV 8] And (Not Bit);
1 : Bits[Index DIV 8]:=Bits[Index DIV 8] Or Bit;
end;
end;
{SetBit}
Procedure F (Var FR, FK, Output);
Var
R : Array [1..48] Of Byte ABSOLUTE FR;
K : Array [1..48] Of Byte ABSOLUTE FK;
Temp1 : Array [1..48] Of Byte;
Temp2 : Array [1..32] Of Byte;
n, h, i, j, Row, Column : Integer;
TotalOut : Array [1..32] Of Byte ABSOLUTE Output;
begin
For n:=1 to 48do
Temp1[n]:=R[E[n]] Xor K[n];
For n:=1 to 8do
begin
i:=(n-1)*6;
j:=(n-1)*4;
Row:=Temp1[i+1]*2+Temp1[i+6];
Column:=Temp1[i+2]*8 + Temp1[i+3]*4 + Temp1[i+4]*2 + Temp1[i+5];
For h:=1 to 4do
begin
Case h Of
1 : Temp2[j+h]:=(SBoxes[n,Row,Column] And 8) DIV 8;
2 : Temp2[j+h]:=(SBoxes[n,Row,Column] And 4) DIV 4;
3 : Temp2[j+h]:=(SBoxes[n,Row,Column] And 2) DIV 2;
4 : Temp2[j+h]:=(SBoxes[n,Row,Column] And 1);
end;
end;
end;
For n:=1 to 32do
TotalOut[n]:=Temp2[P[n]];
end;
{F}
Procedure Shift (Var SubKeyPart);
Var
SKP : Array [1..28] Of Byte ABSOLUTE SubKeyPart;
n, b : Byte;
begin
b:=SKP[1];
For n:=1 to 27do
SKP[n]:=SKP[n+1];
SKP[28]:=b;
end;
{Shift}
Procedure SubKey (Round : Byte;
Var SubKey);
Var
SK : Array [1..48] Of Byte ABSOLUTE SubKey;
n, b : Byte;
begin
For n:=1 to ShiftTable[Round]do
begin
Shift (C);
Shift (D);
end;
For n:=1 to 48do
begin
b:=PC_2[n];
If b<=28 then
SK[n]:=C else
SK[n]:=D[b-28];
end;
end;
{SubKey}
Var
n, i, b, Round : Byte;
Outputje : Array [1..64] Of Byte;
K : Array [1..48] Of Byte;
fi : Text;
begin
For n:=1 to 64do
InputValue[n]:=GetBit (Input,n);
For n:=1 to 28do
begin
C[n]:=GetBit(Key,PC_1[n]);
D[n]:=GetBit(Key,PC_1[n+28]);
end;
For n:=1 to 16do
SubKey (n,RoundKeys[n]);
For n:=1 to 64do
If n<=32 then
L[n]:=InputValue[IP[n]] else
R[n-32]:=InputValue[IP[n]];
For Round:=1 to 16do
begin
If Encrypt then
F (R,RoundKeys[Round],FunctionResult)
else
F (R,RoundKeys[17-Round],FunctionResult);
For n:=1 to 32do
FunctionResult[n]:=FunctionResult[n] Xor L[n];
L:=R;
R:=FunctionResult;
end;
For n:=1 to 64do
begin
b:=InvIP[n];
If b<=32 then
OutputValue[n]:=R else
OutputValue[n]:=L[b-32];
end;
For n:=1 to 64do
SetBit (Output,n,OutputValue[n]);
end;

end.

//下面这段是我写的代码,测试加密与解密。能够正确得到解密后的结果。问题是,如何
得到只有大小写字母和阿拉伯数字的密码,以及在哪儿修改明文,修改有没有什么规则,不
能少于多少,或高于多少?麻烦creation-zy能不能帮我注解一下,同是也是造福众大富翁。
非常感谢!完毕之后,我将再给200分给你,这100分已经是你的了。如果今天下午能看到结
果就最好!谢谢!!!!!!
procedure TForm1.Button4Click(Sender: TObject);
const
s2:array[0..7] of byte =(0,0,0,0,0,0,0,0);
var s:array[0..7] of byte;
s1:array[0..7] of byte;
i:integer;
ss:string;
begin
ss:= edtSn.Text;
for i:=0 to 7do
s := Ord(ss[i+1]);
DES(s,s1,s2,True);
ss:='';
for i:=0 to 7do
begin
ss:=ss+Chr(s1);
end;
edtUsersn.Text := ss;
for i:=0 to 7do
s := s1;
DES(s,s1,s2,False);
ss:='';
for i:=0 to 7do
begin
ss:=ss+Chr(s1);
end;
edtUsersn1.Text := ss;
end;
 
procedure BytesToHexStr(var hHexStr: String;pbyteArray: PByte;InputLength: WORD);
Const
HexChars : Array[0..15] of Char = '0123456789ABCDEF';
var
i, j: WORD;
begin
SetLength(hHexStr, (InputLength * 2));
FillChar(hHexStr[1], InputLength * 2, #0);
j := 1;
for i := 1 to InputLength do
begin
hHexStr[j] := Char(HexChars[pbyteArray^ shr 4]);
inc(j);
hHexStr[j] := Char(HexChars[pbyteArray^ and 15]);
inc(j);
inc(pbyteArray);
end;
end;
procedure HexStrToBytes(hHexStr: String;
pbyteArray: Pointer);
{pbyteArray must point to enough memory to hold the output}
var
i, j:WORD;
tempPtr:pChar;
twoDigits:String[2];
begin
tempPtr := pbyteArray;
j := 1;
for i := 1 to (Length(hHexStr) DIV 2)do
begin
twoDigits:=Copy(hHexStr, j, 2);
Inc(j, 2);
PByte(tempPtr)^:=StrToInt('$' + twoDigits);
Inc(tempPtr);
end;
end;

procedure TForm1.Button1Click(Sender: TObject);
const
s2:array[0..7] of byte =(0,0,0,0,0,0,0,0);
//密钥,可以由字符串生成,像 ss->s一样
var
s:array[0..7] of byte;
s1:array[0..7] of byte;
i:integer;
ss:string;
begin
ss:= Edit1.Text;
//明文
for i:=0 to 7do
//获得明文的前8个字符——后面的全部忽略
s := Ord(ss[i+1]);
DES(s,s1,s2,True);
BytesToHexStr(ss,@s1[0],8);
//将加密后的密文Buf以十六进制方式显示出来 0..9,A..F
Edit2.Text:=ss;
end;

procedure TForm1.Button2Click(Sender: TObject);
const
s2:array[0..7] of byte =(0,0,0,0,0,0,0,0);
var
s:array[0..7] of byte;
s1:array[0..7] of byte;
i:integer;
ss:string;
begin
HexStrToBytes(Edit2.Text,@s[0]);
//Hex String -> Buf
DES(s,s1,s2,True);
ss:='';
for i:=0 to 7do
ss:=ss+Chr(s1);
Edit3.Text:=ss;
end;
 
非常感谢creation-zy!!!
可以用了!
http://www.delphibbs.com/delphibbs/dispq.asp?lid=1021092
我另外开了一个200分的贴子,麻烦你去留个贴,我好分分给你。如果你能给我讲讲如何给
软件加密,如怎样取得该机的唯一标识,如硬盘,网卡等,再怎样将他们综合起来运算生成
一个序列号。我知道怎样抓硬盘,网卡等的序列号,但CPU只有INTEL的才行,其他的不知有
什么办法,有的似乎还可以抓主板的序号。如果你对这方面比较熟悉的话,能否给我指导指
导?非常感谢你的帮助!!
也感谢各位朋友来捧场!
 
to dadabox:
这个des加密算法的源码怎么只能设置8位的密钥啊?
我有这些代码, 不知道怎么改变密钥的长度啊。比如设置成16位的
密钥怎么弄阿?
 

Similar threads

S
回复
0
查看
451
swish
S
回复
0
查看
859
不得闲
回复
0
查看
670
不得闲
回复
0
查看
520
不得闲
顶部