delphi SHA1加密函数  
官方Delphi 学习QQ群: 682628230(三千人)
频道

delphi SHA1加密函数


在命名空间IdHashSHA,有个函数TidHashSHa1类,用作SHA1加密;

该类的方法Methods有

Constructor:creat

Methods:HashtoHex(const aHash:TidBytes):string;override;

 

                    HashBytesAsHex(const aHash:TidBytes):string;该方法将TidBytes类型返回string类;

 

                   HashStringAsHex(const AStr:String;ADestEncoding:TidTextEncoding=nil):string

 

常规SHA1(utf-8)加密:40位SHA1大写

 

使用HashBytesAsHex代码如下:

function sha1(input:string):string;  

  var  

  temp:tidbytes;  

begin  

    with tidhashsha1.create do  

     try  

       result:=HashBytesAsHex(TdBytes(Bytesof(input)));  

       //result:=HashStringAsHex(input);  

     finally  

      free;  

    end;  

end;  

关于验证自己写的加密函数对错的方法:


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

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

执行时间: 0.066028833389282 seconds