1.delphi Դ?源码khtml 源码????
delphi Դ?????
加密/解密一个字符串
{ Begin code }
program Crypt;
uses WinCRT;
const
C1 = ;
C2 = ;
function Encrypt(const S: String; Key: Word): String;
var
I: byte;
begin
Result[0] := S[0];
for I := 1 to Length(S) do begin
Result[I] := char(byte(S[I]) xor (Key shr 8));
Key := (byte(Result[I]) + Key) * C1 + C2;
end;
end;
function Decrypt(const S: String; Key: Word): String;
var
I: byte;
begin
Result[0] := S[0];
for I := 1 to Length(S) do begin
Result[I] := char(byte(S[I]) xor (Key shr 8));
Key := (byte(S[I]) + Key) * C1 + C2;
end;
end;
var
S: string;
begin
Write('>');
ReadLn(S);
S := Encrypt(S,);
WriteLn(S);
S := Decrypt(S,);
WriteLn(S);
end.
2024-11-20 19:151815人浏览
2024-11-20 18:511232人浏览
2024-11-20 18:33545人浏览
2024-11-20 18:32317人浏览
2024-11-20 16:54274人浏览
2024-11-20 16:342862人浏览
1.Hashtableï¼HashMapåTreeMapçåºå«2.java面试精讲,对比Hashtable、HashMap、TreeMap有什么不同?Hashtableï¼Hash
1.用VS2017跑PCL代码时出现以下错误,请问怎么解决?2.windows组件怎么安装用VS2017跑PCL代码时出现以下错误,请问怎么解决? 在windows上使用All-in-one in
1.怎样在Eclipse中快速查看各种源代码?2.eclipse的配置、快捷键、项目导入导出、常见的插件或代码生成器工具怎样在Eclipse中快速查看各种源代码? 在Eclipse中,虽然源码的j