-
Notifications
You must be signed in to change notification settings - Fork 3
/
FNV0_24.pas
49 lines (39 loc) · 928 Bytes
/
FNV0_24.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
unit FNV0_24;
//FNV0_24
//Author: domasz
//Last Update: 2022-11-20
//Licence: MIT
interface
uses SysUtils, HasherBase;
type THasherFNV0_24 = class(THasherbase)
private
FHash: Cardinal;
public
constructor Create; override;
procedure Update(Msg: PByte; Length: Integer); override;
function Final: String; override;
end;
implementation
constructor THasherFNV0_24.Create;
begin
inherited Create;
Check := 'D70B29';
FHash := 0;
end;
procedure THasherFNV0_24.Update(Msg: PByte; Length: Integer);
var i: Integer;
begin
for i:=0 to Length-1 do begin
FHash := FHash * $01000193;
FHash := FHash xor Msg^;
Inc(Msg);
end;
end;
function THasherFNV0_24.Final: String;
begin
FHash := (FHash shr 24) xor (FHash and $FFFFFF);
Result := IntToHex(FHash, 6);
end;
initialization
HasherList.RegisterHasher('FNV0-24', THasherFNV0_24);
end.