delphi 异或加解密  
官方Delphi 学习QQ群: 682628230(三千人)
频道

delphi 异或加解密


function Int_encrypt(s:string; lkey : Integer):string;

begin

  //大于5位乘87209会有问题,改成乘以13可以支持8位

  //Result := IntToStr(StrToInt(s) xor (lkey * 4356));

  if lkey > 9999 then

    Result := IntToStr(StrToInt(s) xor (lkey * 13))

  else

    Result := IntToStr(StrToInt(s) xor (lkey * 4356));

end;

 

 

function Int_decrypt(s:string; lkey : Integer):string;

begin

  if lkey > 9999 then

    Result := IntToStr(StrToInt(s) xor (lkey * 13))

  else

    Result := IntToStr(StrToInt(s) xor (lkey * 4356));

end;

 

————————————————


原文链接:https://blog.csdn.net/y281252548/article/details/116126655



推荐分享
图文皆来源于网络,内容仅做公益性分享,版权归原作者所有,如有侵权请告知删除!
 

Copyright © 2014 DelphiW.com 开发 源码 文档 技巧 All Rights Reserved
晋ICP备14006235号-8 晋公网安备 14108102000087号

执行时间: 0.036860942840576 seconds