-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDJBHash.pas
51 lines (38 loc) · 892 Bytes
/
DJBHash.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
50
51
unit DJBHash;
//DJB Hash
//Author: domasz
//Last Update: 2022-11-26
//Licence: MIT
interface
uses SysUtils, HasherBase;
type THasherDJBHash = class(THasherbase)
private
FHash: Cardinal;
public
constructor Create; override;
procedure Update(Msg: PByte; Length: Integer); override;
function Final: String; override;
end;
implementation
constructor THasherDJBHash.Create;
begin
inherited Create;
Check := '35CDBB82';
FHash := 5381;
end;
procedure THasherDJBHash.Update(Msg: PByte; Length: Integer);
var i: Integer;
Val: Cardinal;
begin
for i:=0 to Length-1 do begin
FHash := ((FHash shl 5) + FHash) + Msg^;
Inc(Msg);
end;
end;
function THasherDJBHash.Final: String;
begin
Result := IntToHex(FHash, 8);
end;
initialization
HasherList.RegisterHasher('DJB Hash', THasherDJBHash);
end.