-
Notifications
You must be signed in to change notification settings - Fork 4
/
BKDRHash.pas
51 lines (39 loc) · 903 Bytes
/
BKDRHash.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 BKDRHash;
//BKDR Hash
//Author: domasz
//Last Update: 2022-11-26
//Licence: MIT
interface
uses SysUtils, HasherBase;
type THasherBKDRHash = class(THasherbase)
private
FHash: Cardinal;
Seed: Cardinal;
public
constructor Create; override;
procedure Update(Msg: PByte; Length: Integer); override;
function Final: String; override;
end;
implementation
constructor THasherBKDRHash.Create;
begin
inherited Create;
Seed := 131;
Check := 'DE43D6D5';
FHash := 0;
end;
procedure THasherBKDRHash.Update(Msg: PByte; Length: Integer);
var i: Integer;
begin
for i:=0 to Length-1 do begin
FHash := (FHash * seed) + Msg^;
Inc(Msg);
end;
end;
function THasherBKDRHash.Final: String;
begin
Result := IntToHex(FHash, 8);
end;
initialization
HasherList.RegisterHasher('BKDR Hash', THasherBKDRHash);
end.