欢迎来到皮皮网官网

【麻将带亲友圈源码】【撩妹源码】【tiggervnc源码安装】delphi源码加密

时间:2024-11-15 01:41:13 来源:成绩分析源码

1.delphiԴ?源码麻将带亲友圈源码????

delphi源码加密

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.

copyright © 2016 powered by 皮皮网   sitemap