123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- unit unixcrypt;
- {$mode objfpc}
- {$linklib crypt}
- {$H+}
- interface
- uses
- ctypes;
- function crypt(const key: pchar; const salt: pchar): pchar; cdecl; external;
- // salt helper functions
- function gen_des_salt: string;
- function gen_md5_salt: string;
- // crypt helper functions
- function crypt_password(const key: string; const UseMD5: boolean): string;
- function validate_password(const key: string; const hash: string): boolean;
- implementation
- const
- salt_chars: array[0..63] of char = (
- 'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z',
- 'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z',
- '0','1','2','3','4','5','6','7','8','9','.','/');
- function gen_des_salt: string;
- begin
- Result := salt_chars[Random(64)] + salt_chars[Random(64)];
- end;
- function gen_md5_salt: string;
- var
- i: integer;
- begin
- Result := '$1$';
- for i := 0 to 7 do
- Result := Result + salt_chars[Random(64)];
- end;
- function crypt_password(const key: string; const UseMD5: boolean): string;
- begin
- if UseMD5 then
- Result := crypt(pchar(key), pchar(gen_md5_salt)) else
- Result := crypt(pchar(key), pchar(gen_des_salt));
- end;
- function validate_password(const key: string; const hash: string): boolean;
- begin
- Result :=
- // MD5 compare
- ((Length(hash) = 34) and (hash[1] = '$') and (hash[2] = '1') and (hash[3] = '$') and (hash[12] = '$') and (crypt(pchar(key), pchar(copy(hash, 1, 11))) = hash)) or
- // DES compare
- ((Length(hash) = 13) and (crypt(pchar(key), pchar(copy(hash, 1, 2))) = hash));
- end;
- end.
|