代码拉取完成,页面将自动刷新
{******************************************************************************}
{ CnPack For Delphi/C++Builder }
{ 中国人自己的开放源码第三方开发包 }
{ (C)Copyright 2001-2020 CnPack 开发组 }
{ ------------------------------------ }
{ }
{ 本开发包是开源的自由软件,您可以遵照 CnPack 的发布协议来修 }
{ 改和重新发布这一程序。 }
{ }
{ 发布这一开发包的目的是希望它有用,但没有任何担保。甚至没有 }
{ 适合特定目的而隐含的担保。更详细的情况请参阅 CnPack 发布协议。 }
{ }
{ 您应该已经和开发包一起收到一份 CnPack 发布协议的副本。如果 }
{ 还没有,可访问我们的网站: }
{ }
{ 网站地址:http://www.cnpack.org }
{ 电子邮件:[email protected] }
{ }
{******************************************************************************}
{******************************************************************************}
{ 该单元基于Ronald L. Rivest的MD5.pas改写,以下是MD5.pas的声明: }
{ -----------------------------------------------------------------------------}
{ }
{ MD5 Message-Digest for Delphi 4 }
{ }
{ Delphi 4 Unit implementing the }
{ RSA Data Security, Inc. MD5 Message-Digest Algorithm }
{ }
{ Implementation of Ronald L. Rivest's RFC 1321 }
{ }
{ Copyright ?1997-1999 Medienagentur Fichtner & Meyer }
{ Written by Matthias Fichtner }
{ }
{ -----------------------------------------------------------------------------}
{ See RFC 1321 for RSA Data Security's copyright and license notice! }
{ -----------------------------------------------------------------------------}
{ The latest release of md5.pas will always be available from }
{ the distribution site at: http://www.fichtner.net/delphi/md5/ }
{ -----------------------------------------------------------------------------}
{ Please send questions, bug reports and suggestions }
{ regarding this code to: [email protected] }
{ -----------------------------------------------------------------------------}
{ This code is provided "as is" without express or }
{ implied warranty of any kind. Use it at your own risk. }
{******************************************************************************}
unit CnMD5;
{* |<PRE>
================================================================================
* 软件名称:开发包基础库
* 单元名称:MD5 算法单元
* 单元作者:何清(QSoft) [email protected]; http://qsoft.51.net
* 备 注:
* 开发平台:PWin2000Pro + Delphi 5.0
* 兼容测试:PWin9X/2000/XP + Delphi 5/6
* 本 地 化:该单元中的字符串均符合本地化处理方式
* 修改记录:2019.12.12 V1.4
* 支持 TBytes
* 2019.04.15 V1.3
* 支持 Win32/Win64/MacOS
* 2014.11.14 V1.2
* 汇编切换至 Pascal 以支持跨平台
* 2003.09.18 V1.1
* 好不容易找到了该单元原作者的版权声明
* 2003.09.18 V1.0
* 创建单元
================================================================================
|</PRE>}
interface
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
uses
Classes, SysUtils {$IFDEF MSWINDOWS}, Windows {$ENDIF};
type
TMD5Count = array[0..1] of LongWord;
TMD5State = array[0..3] of LongWord;
TMD5Block = array[0..15] of LongWord;
TMD5CBits = array[0..7] of byte;
TMD5Digest = array[0..15] of byte;
TMD5Buffer = array[0..63] of byte;
TMD5Context = record
State : TMD5State;
Count : TMD5Count;
Buffer : TMD5Buffer;
Ipad : array[0..63] of Byte; {!< HMAC: inner padding }
Opad : array[0..63] of Byte; {!< HMAC: outer padding }
end;
TMD5CalcProgressFunc = procedure (ATotal, AProgress: Int64;
var Cancel: Boolean) of object;
{* 进度回调事件类型声明}
//----------------------------------------------------------------
// 用户 API 函数定义
//----------------------------------------------------------------
function MD5Buffer(const Buffer; Count: LongWord): TMD5Digest;
{* 对数据块进行 MD5 计算
|<PRE>
const Buffer - 要计算的数据块
Count: LongWord - 数据块长度
|</PRE>}
{$IFDEF TBYTES_DEFINED}
function MD5Bytes(Data: TBytes): TMD5Digest;
{* 对 TBytes 进行 MD5 计算
|<PRE>
Data - 要计算的字节数组
|</PRE>}
{$ENDIF}
function MD5String(const Str: string): TMD5Digest;
{* 对 String 类型数据进行 MD5 计算。注意 D2009 或以上版本的 string 为 UnicodeString,
代码中会将其转换成 AnsiString 进行计算
|<PRE>
Str: string - 要计算的字符串
|</PRE>}
function MD5StringA(const Str: AnsiString): TMD5Digest;
{* 对 AnsiString 类型数据进行 MD5 计算
|<PRE>
Str: AnsiString - 要计算的字符串
|</PRE>}
function MD5StringW(const Str: WideString): TMD5Digest;
{* 对 WideString 类型数据进行 MD5 计算,计算前会调用 WideCharToMultyByte 进行转换
|<PRE>
Str: WideString - 要计算的宽字符串
|</PRE>}
function MD5UnicodeString(const Str: {$IFDEF UNICODE} string {$ELSE} WideString {$ENDIF}): TMD5Digest;
{* 对 UnicodeString 类型数据进行直接的 MD5 计算,不进行转换
|<PRE>
Str: UnicodeString/WideString - 要计算的宽字符串
|</PRE>}
function MD5File(const FileName: string;
CallBack: TMD5CalcProgressFunc = nil): TMD5Digest;
{* 对指定文件内容进行 MD5 计算
|<PRE>
FileName: string - 要计算的文件名
CallBack: TMD5CalcProgressFunc - 进度回调函数,默认为空
|</PRE>}
function MD5Stream(Stream: TStream;
CallBack: TMD5CalcProgressFunc = nil): TMD5Digest;
{* 对指定流数据进行 MD5 计算
|<PRE>
Stream: TStream - 要计算的流内容
CallBack: TMD5CalcProgressFunc - 进度回调函数,默认为空
|</PRE>}
function MD5Print(const Digest: TMD5Digest): string;
{* 以十六进制格式输出 MD5 计算值
|<PRE>
Digest: TMD5Digest - 指定的 MD5 计算值
|</PRE>}
function MD5Match(const D1, D2: TMD5Digest): Boolean;
{* 比较两个 MD5 计算值是否相等
|<PRE>
D1: TMD5Digest - 需要比较的 MD5 计算值
D2: TMD5Digest - 需要比较的 MD5 计算值
|</PRE>}
function MD5DigestToStr(aDig: TMD5Digest): string;
{* MD5 计算值转 string
|<PRE>
aDig: TMD5Digest - 需要转换的 MD5 计算值
|</PRE>}
procedure MD5Hmac(Key: PAnsiChar; KeyLength: Integer; Input: PAnsiChar;
Length: LongWord; var Output: TMD5Digest);
{* Hash-based Message Authentication Code (based on MD5) }
implementation
const
MAX_FILE_SIZE = 512 * 1024 * 1024;
// If file size <= this size (bytes), using Mapping, else stream
HMAC_MD5_BLOCK_SIZE_BYTE = 64;
HMAC_MD5_OUTPUT_LENGTH_BYTE = 16;
var
PADDING: TMD5Buffer = (
$80, $00, $00, $00, $00, $00, $00, $00,
$00, $00, $00, $00, $00, $00, $00, $00,
$00, $00, $00, $00, $00, $00, $00, $00,
$00, $00, $00, $00, $00, $00, $00, $00,
$00, $00, $00, $00, $00, $00, $00, $00,
$00, $00, $00, $00, $00, $00, $00, $00,
$00, $00, $00, $00, $00, $00, $00, $00,
$00, $00, $00, $00, $00, $00, $00, $00
);
function F(x, y, z: LongWord): LongWord;
begin
Result := (x and y) or ((not x) and z);
// AND EDX, EAX
// NOT EAX
// AND EAX, ECX
// OR EAX, EDX
end;
function G(x, y, z: LongWord): LongWord;
begin
Result := (x and z) or (y and (not z));
// AND EAX, ECX
// NOT ECX
// AND EDX, ECX
// OR EAX, EDX
end;
function H(x, y, z: LongWord): LongWord;
begin
Result := x xor y xor z;
// XOR EAX, EDX
// XOR EAX, ECX
end;
function I(x, y, z: LongWord): LongWord;
begin
Result := y xor (x or (not z));
// NOT ECX
// OR EAX, ECX
// XOR EAX, EDX
end;
procedure ROT(var x: LongWord; n: BYTE);
begin
x := (x shl n) or (x shr (32 - n));
// PUSH EBX
// MOV CL, $20
// SUB CL, DL
// MOV EBX, [EAX]
// SHR EBX, CL
// MOV ECX, EDX
// MOV EDX, [EAX]
// SHL EDX, CL
// OR EBX, EDX
// MOV [EAX], EBX
// POP EBX
end;
procedure FF(var a: LongWord; b, c, d, x: LongWord; s: BYTE; ac: LongWord);
begin
Inc(a, F(b, c, d) + x + ac);
ROT(a, s);
Inc(a, b);
end;
procedure GG(var a: LongWord; b, c, d, x: LongWord; s: BYTE; ac: LongWord);
begin
Inc(a, G(b, c, d) + x + ac);
ROT(a, s);
Inc(a, b);
end;
procedure HH(var a: LongWord; b, c, d, x: LongWord; s: BYTE; ac: LongWord);
begin
Inc(a, H(b, c, d) + x + ac);
ROT(a, s);
Inc(a, b);
end;
procedure II(var a: LongWord; b, c, d, x: LongWord; s: BYTE; ac: LongWord);
begin
Inc(a, I(b, c, d) + x + ac);
ROT(a, s);
Inc(a, b);
end;
// Encode Count bytes at Source into (Count / 4) DWORDs at Target
procedure Encode(Source, Target: pointer; Count: LongWord);
var
S: PByte;
T: PLongWord;
I: LongWord;
begin
S := Source;
T := Target;
for I := 1 to Count div 4 do
begin
T^ := S^;
Inc(S);
T^ := T^ or (S^ shl 8);
Inc(S);
T^ := T^ or (S^ shl 16);
Inc(S);
T^ := T^ or (S^ shl 24);
Inc(S);
Inc(T);
end;
end;
// Decode Count DWORDs at Source into (Count * 4) Bytes at Target
procedure Decode(Source, Target: pointer; Count: LongWord);
var
S: PLongWord;
T: PByte;
I: LongWord;
begin
S := Source;
T := Target;
for I := 1 to Count do
begin
T^ := S^ and $ff;
Inc(T);
T^ := (S^ shr 8) and $ff;
Inc(T);
T^ := (S^ shr 16) and $ff;
Inc(T);
T^ := (S^ shr 24) and $ff;
Inc(T);
Inc(S);
end;
end;
// Transform State according to first 64 bytes at Buffer
procedure Transform(Buffer: pointer; var State: TMD5State);
var
a, b, c, d: LongWord;
Block: TMD5Block;
begin
Encode(Buffer, @Block, 64);
a := State[0];
b := State[1];
c := State[2];
d := State[3];
FF (a, b, c, d, Block[ 0], 7, $d76aa478);
FF (d, a, b, c, Block[ 1], 12, $e8c7b756);
FF (c, d, a, b, Block[ 2], 17, $242070db);
FF (b, c, d, a, Block[ 3], 22, $c1bdceee);
FF (a, b, c, d, Block[ 4], 7, $f57c0faf);
FF (d, a, b, c, Block[ 5], 12, $4787c62a);
FF (c, d, a, b, Block[ 6], 17, $a8304613);
FF (b, c, d, a, Block[ 7], 22, $fd469501);
FF (a, b, c, d, Block[ 8], 7, $698098d8);
FF (d, a, b, c, Block[ 9], 12, $8b44f7af);
FF (c, d, a, b, Block[10], 17, $ffff5bb1);
FF (b, c, d, a, Block[11], 22, $895cd7be);
FF (a, b, c, d, Block[12], 7, $6b901122);
FF (d, a, b, c, Block[13], 12, $fd987193);
FF (c, d, a, b, Block[14], 17, $a679438e);
FF (b, c, d, a, Block[15], 22, $49b40821);
GG (a, b, c, d, Block[ 1], 5, $f61e2562);
GG (d, a, b, c, Block[ 6], 9, $c040b340);
GG (c, d, a, b, Block[11], 14, $265e5a51);
GG (b, c, d, a, Block[ 0], 20, $e9b6c7aa);
GG (a, b, c, d, Block[ 5], 5, $d62f105d);
GG (d, a, b, c, Block[10], 9, $2441453);
GG (c, d, a, b, Block[15], 14, $d8a1e681);
GG (b, c, d, a, Block[ 4], 20, $e7d3fbc8);
GG (a, b, c, d, Block[ 9], 5, $21e1cde6);
GG (d, a, b, c, Block[14], 9, $c33707d6);
GG (c, d, a, b, Block[ 3], 14, $f4d50d87);
GG (b, c, d, a, Block[ 8], 20, $455a14ed);
GG (a, b, c, d, Block[13], 5, $a9e3e905);
GG (d, a, b, c, Block[ 2], 9, $fcefa3f8);
GG (c, d, a, b, Block[ 7], 14, $676f02d9);
GG (b, c, d, a, Block[12], 20, $8d2a4c8a);
HH (a, b, c, d, Block[ 5], 4, $fffa3942);
HH (d, a, b, c, Block[ 8], 11, $8771f681);
HH (c, d, a, b, Block[11], 16, $6d9d6122);
HH (b, c, d, a, Block[14], 23, $fde5380c);
HH (a, b, c, d, Block[ 1], 4, $a4beea44);
HH (d, a, b, c, Block[ 4], 11, $4bdecfa9);
HH (c, d, a, b, Block[ 7], 16, $f6bb4b60);
HH (b, c, d, a, Block[10], 23, $bebfbc70);
HH (a, b, c, d, Block[13], 4, $289b7ec6);
HH (d, a, b, c, Block[ 0], 11, $eaa127fa);
HH (c, d, a, b, Block[ 3], 16, $d4ef3085);
HH (b, c, d, a, Block[ 6], 23, $4881d05);
HH (a, b, c, d, Block[ 9], 4, $d9d4d039);
HH (d, a, b, c, Block[12], 11, $e6db99e5);
HH (c, d, a, b, Block[15], 16, $1fa27cf8);
HH (b, c, d, a, Block[ 2], 23, $c4ac5665);
II (a, b, c, d, Block[ 0], 6, $f4292244);
II (d, a, b, c, Block[ 7], 10, $432aff97);
II (c, d, a, b, Block[14], 15, $ab9423a7);
II (b, c, d, a, Block[ 5], 21, $fc93a039);
II (a, b, c, d, Block[12], 6, $655b59c3);
II (d, a, b, c, Block[ 3], 10, $8f0ccc92);
II (c, d, a, b, Block[10], 15, $ffeff47d);
II (b, c, d, a, Block[ 1], 21, $85845dd1);
II (a, b, c, d, Block[ 8], 6, $6fa87e4f);
II (d, a, b, c, Block[15], 10, $fe2ce6e0);
II (c, d, a, b, Block[ 6], 15, $a3014314);
II (b, c, d, a, Block[13], 21, $4e0811a1);
II (a, b, c, d, Block[ 4], 6, $f7537e82);
II (d, a, b, c, Block[11], 10, $bd3af235);
II (c, d, a, b, Block[ 2], 15, $2ad7d2bb);
II (b, c, d, a, Block[ 9], 21, $eb86d391);
Inc(State[0], a);
Inc(State[1], b);
Inc(State[2], c);
Inc(State[3], d);
end;
// Initialize given Context
procedure MD5Init(var Context: TMD5Context);
begin
with Context do
begin
State[0] := $67452301;
State[1] := $EFCDAB89;
State[2] := $98BADCFE;
State[3] := $10325476;
Count[0] := 0;
Count[1] := 0;
// ZeroMemory(@Buffer, SizeOf(TMD5Buffer));
FillChar(Buffer, SizeOf(TMD5Buffer), 0);
end;
end;
// Update given Context to include Length bytes of Input
procedure MD5Update(var Context: TMD5Context; Input: PAnsiChar; Length: LongWord);
var
Index: LongWord;
PartLen: LongWord;
I: LongWord;
begin
with Context do
begin
Index := (Count[0] shr 3) and $3f;
Inc(Count[0], Length shl 3);
if Count[0] < (Length shl 3) then Inc(Count[1]);
Inc(Count[1], Length shr 29);
end;
PartLen := 64 - Index;
if Length >= PartLen then
begin
Move(Input^, Context.Buffer[Index], PartLen);
Transform(@Context.Buffer, Context.State);
I := PartLen;
while I + 63 < Length do
begin
Transform(@Input[I], Context.State);
Inc(I, 64);
end;
Index := 0;
end
else
I := 0;
Move(Input[I], Context.Buffer[Index], Length - I);
end;
procedure MD5UpdateW(var Context: TMD5Context; Input: PWideChar; CharLength: LongWord);
var
{$IFDEF MSWINDOWS}
pContent: PAnsiChar;
iLen: Cardinal;
{$ELSE}
S: string; // 必须是 UnicodeString
A: AnsiString;
{$ENDIF}
begin
{$IFDEF MSWINDOWS}
GetMem(pContent, CharLength * SizeOf(WideChar));
try
iLen := WideCharToMultiByte(0, 0, Input, CharLength, // 代码页默认用 0
PAnsiChar(pContent), CharLength * SizeOf(WideChar), nil, nil);
MD5Update(Context, pContent, iLen);
finally
FreeMem(pContent);
end;
{$ELSE} // MacOS 下直接把 UnicodeString 转成 AnsiString 计算,不支持非 Windows 非 Unicode 平台
S := StrNew(Input);
A := AnsiString(S);
MD5Update(Context, @A[1], Length(A));
{$ENDIF}
end;
// Finalize given Context, create Digest
procedure MD5Final(var Context: TMD5Context; var Digest: TMD5Digest);
var
Bits: TMD5CBits;
Index: LongWord;
PadLen: LongWord;
begin
Decode(@Context.Count, @Bits, 2);
Index := (Context.Count[0] shr 3) and $3f;
if Index < 56 then
PadLen := 56 - Index
else
PadLen := 120 - Index;
MD5Update(Context, @PADDING, PadLen);
MD5Update(Context, @Bits, 8);
Decode(@Context.State, @Digest, 4);
end;
function InternalMD5Stream(Stream: TStream; const BufSize: Cardinal; var D:
TMD5Digest; CallBack: TMD5CalcProgressFunc = nil): Boolean;
var
Context: TMD5Context;
Buf: PAnsiChar;
BufLen: Cardinal;
Size: Int64;
ReadBytes: Cardinal;
TotalBytes: Int64;
SavePos: Int64;
CancelCalc: Boolean;
begin
Result := False;
Size := Stream.Size;
if Size = 0 then
Exit;
SavePos := Stream.Position;
TotalBytes := 0;
if Size < BufSize then
BufLen := Size
else
BufLen := BufSize;
CancelCalc := False;
MD5Init(Context);
GetMem(Buf, BufLen);
try
Stream.Seek(0, soFromBeginning);
repeat
ReadBytes := Stream.Read(Buf^, BufLen);
if ReadBytes <> 0 then
begin
Inc(TotalBytes, ReadBytes);
MD5Update(Context, Buf, ReadBytes);
if Assigned(CallBack) then
begin
CallBack(Size, TotalBytes, CancelCalc);
if CancelCalc then Exit;
end;
end;
until (ReadBytes = 0) or (TotalBytes = Size);
MD5Final(Context, D);
Result := True;
finally
FreeMem(Buf, BufLen);
Stream.Position := SavePos;
end;
end;
//----------------------------------------------------------------
// 用户 API 函数实现
//----------------------------------------------------------------
// 对数据块进行 MD5 计算
function MD5Buffer(const Buffer; Count: Longword): TMD5Digest;
var
Context: TMD5Context;
begin
MD5Init(Context);
MD5Update(Context, PAnsiChar(Buffer), Count);
MD5Final(Context, Result);
end;
{$IFDEF TBYTES_DEFINED}
function MD5Bytes(Data: TBytes): TMD5Digest;
var
Context: TMD5Context;
begin
MD5Init(Context);
MD5Update(Context, PAnsiChar(@Data[0]), Length(Data));
MD5Final(Context, Result);
end;
{$ENDIF}
// 对 String 类型数据进行 MD5 计算
function MD5String(const Str: string): TMD5Digest;
var
AStr: AnsiString;
begin
AStr := AnsiString(Str);
Result := MD5StringA(AStr);
end;
// 对 AnsiString 类型数据进行 MD5 计算
function MD5StringA(const Str: AnsiString): TMD5Digest;
var
Context: TMD5Context;
begin
MD5Init(Context);
MD5Update(Context, PAnsiChar(Str), Length(Str));
MD5Final(Context, Result);
end;
// 对 WideString 类型数据进行 MD5 计算
function MD5StringW(const Str: WideString): TMD5Digest;
var
Context: TMD5Context;
begin
MD5Init(Context);
MD5UpdateW(Context, PWideChar(Str), Length(Str));
MD5Final(Context, Result);
end;
// 对 UnicodeString 类型数据进行直接的 MD5 计算,不进行转换
function MD5UnicodeString(const Str: {$IFDEF UNICODE} string {$ELSE} WideString {$ENDIF}): TMD5Digest;
var
Context: TMD5Context;
begin
MD5Init(Context);
MD5Update(Context, PAnsiChar(@Str[1]), Length(Str) * SizeOf(WideChar));
MD5Final(Context, Result);
end;
// 对指定文件内容进行 MD5 计算
function MD5File(const FileName: string;
CallBack: TMD5CalcProgressFunc): TMD5Digest;
var
{$IFDEF MSWINDOWS}
FileHandle: THandle;
MapHandle: THandle;
ViewPointer: Pointer;
Context: TMD5Context;
{$ENDIF}
Stream: TStream;
FileIsZeroSize: Boolean;
function FileSizeIsLargeThanMaxOrCanNotMap(const AFileName: string; out IsEmpty: Boolean): Boolean;
{$IFDEF MSWINDOWS}
var
H: THandle;
Info: BY_HANDLE_FILE_INFORMATION;
Rec : Int64Rec;
{$ENDIF}
begin
{$IFDEF MSWINDOWS}
Result := False;
IsEmpty := False;
H := CreateFile(PChar(FileName), GENERIC_READ, FILE_SHARE_READ, nil, OPEN_EXISTING, 0, 0);
if H = INVALID_HANDLE_VALUE then Exit;
try
if not GetFileInformationByHandle(H, Info) then Exit;
finally
CloseHandle(H);
end;
Rec.Lo := Info.nFileSizeLow;
Rec.Hi := Info.nFileSizeHigh;
Result := (Rec.Hi > 0) or (Rec.Lo > MAX_FILE_SIZE);
IsEmpty := (Rec.Hi = 0) and (Rec.Lo = 0);
{$ELSE}
Result := True; // 非 Windows 平台返回 True,表示不 Mapping
{$ENDIF}
end;
begin
FileIsZeroSize := False;
if FileSizeIsLargeThanMaxOrCanNotMap(FileName, FileIsZeroSize) then
begin
// 大于 2G 的文件可能 Map 失败,或非 Windows 平台,采用流方式循环处理
Stream := TFileStream.Create(FileName, fmOpenRead or fmShareDenyWrite);
try
InternalMD5Stream(Stream, 4096 * 1024, Result, CallBack);
finally
Stream.Free;
end;
end
else
begin
{$IFDEF MSWINDOWS}
MD5Init(Context);
FileHandle := CreateFile(PChar(FileName), GENERIC_READ, FILE_SHARE_READ or
FILE_SHARE_WRITE, nil, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL or
FILE_FLAG_SEQUENTIAL_SCAN, 0);
if FileHandle <> INVALID_HANDLE_VALUE then
begin
try
MapHandle := CreateFileMapping(FileHandle, nil, PAGE_READONLY, 0, 0, nil);
if MapHandle <> 0 then
begin
try
ViewPointer := MapViewOfFile(MapHandle, FILE_MAP_READ, 0, 0, 0);
if ViewPointer <> nil then
begin
try
MD5Update(Context, ViewPointer, GetFileSize(FileHandle, nil));
finally
UnmapViewOfFile(ViewPointer);
end;
end
else
begin
raise Exception.Create('MapViewOfFile Failed. ' + IntToStr(GetLastError));
end;
finally
CloseHandle(MapHandle);
end;
end
else
begin
if not FileIsZeroSize then
raise Exception.Create('CreateFileMapping Failed. ' + IntToStr(GetLastError));
end;
finally
CloseHandle(FileHandle);
end;
end;
MD5Final(Context, Result);
{$ENDIF}
end;
end;
// 对指定流进行 MD5 计算
function MD5Stream(Stream: TStream;
CallBack: TMD5CalcProgressFunc = nil): TMD5Digest;
begin
InternalMD5Stream(Stream, 4096 * 1024, Result, CallBack);
end;
// 以十六进制格式输出 MD5 计算值
function MD5Print(const Digest: TMD5Digest): string;
var
I: Byte;
const
Digits: array[0..15] of AnsiChar = ('0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', 'a', 'b', 'c', 'd', 'e', 'f');
begin
Result := '';
for I := 0 to 15 do
Result := Result + {$IFDEF UNICODE}string{$ENDIF}(Digits[(Digest[I] shr 4) and $0F] +
Digits[Digest[I] and $0F]);
end;
// 比较两个 MD5 计算值是否相等
function MD5Match(const D1, D2: TMD5Digest): Boolean;
var
I: Integer;
begin
I := 0;
Result := True;
while Result and (I < 16) do
begin
Result := D1[I] = D2[I];
Inc(I);
end;
end;
// MD5 计算值转 string
function MD5DigestToStr(aDig: TMD5Digest): string;
var
I: Integer;
begin
SetLength(Result, 16);
for I := 1 to 16 do
Result[I] := Chr(aDig[I - 1]);
end;
procedure MD5HmacInit(var Ctx: TMD5Context; Key: PAnsiChar; KeyLength: Integer);
var
I: Integer;
Sum: TMD5Digest;
begin
if KeyLength > HMAC_MD5_BLOCK_SIZE_BYTE then
begin
Sum := MD5Buffer(Key, KeyLength);
KeyLength := HMAC_MD5_OUTPUT_LENGTH_BYTE;
Key := @(Sum[0]);
end;
FillChar(Ctx.Ipad, HMAC_MD5_BLOCK_SIZE_BYTE, $36);
FillChar(Ctx.Opad, HMAC_MD5_BLOCK_SIZE_BYTE, $5C);
for I := 0 to KeyLength - 1 do
begin
Ctx.Ipad[I] := Byte(Ctx.Ipad[I] xor Byte(Key[I]));
Ctx.Opad[I] := Byte(Ctx.Opad[I] xor Byte(Key[I]));
end;
MD5Init(Ctx);
MD5Update(Ctx, @(Ctx.Ipad[0]), HMAC_MD5_BLOCK_SIZE_BYTE);
end;
procedure MD5HmacUpdate(var Ctx: TMD5Context; Input: PAnsiChar; Length: LongWord);
begin
MD5Update(Ctx, Input, Length);
end;
procedure MD5HmacFinal(var Ctx: TMD5Context; var Output: TMD5Digest);
var
Len: Integer;
TmpBuf: TMD5Digest;
begin
Len := HMAC_MD5_OUTPUT_LENGTH_BYTE;
MD5Final(Ctx, TmpBuf);
MD5Init(Ctx);
MD5Update(Ctx, @(Ctx.Opad[0]), HMAC_MD5_BLOCK_SIZE_BYTE);
MD5Update(Ctx, @(TmpBuf[0]), Len);
MD5Final(Ctx, Output);
end;
procedure MD5Hmac(Key: PAnsiChar; KeyLength: Integer; Input: PAnsiChar;
Length: LongWord; var Output: TMD5Digest);
var
Ctx: TMD5Context;
begin
MD5HmacInit(Ctx, Key, KeyLength);
MD5HmacUpdate(Ctx, Input, Length);
MD5HmacFinal(Ctx, Output);
end;
end.
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。