Delphi Hash算法[4] SHA1

2021/4/29 20:28:49

本文主要是介绍Delphi Hash算法[4] SHA1,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Delphi Hash算法[4] SHA1

引用单元:IdHashSHA

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大写

1、正常输出

uses IdHashSHA, IdGlobal;

function SHA1(Str: string): string;
begin
  with TIdHashSHA1.Create do
  try
    Result := LowerCase(HashBytesAsHex(TidBytes(Bytesof(Str))));  
  finally
    Free;
  end;
end;

2、UTF-8 格式输出

function sha1(Str: string): string;
begin
  with Tidhashsha1.Create do
  try
    Result := HashStringAsHex(Str,IndyTextEncoding_UTF8);
  finally
    free;
  end;
end;

  

 

 

创建时间:2021.04.29  更新时间:



这篇关于Delphi Hash算法[4] SHA1的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程