Quote:
Originally Posted by felice2011
Hey rinaldo I tried to add the password to decompress the files to your installer but continues to give the following error..

?
|
sha1pass=felice
Code:
function pass: string;
begin Result := 'f2c3bb4f15071c2926893de07fd34773187ecd9b'; //encrypted pass to sha1
end;
function CheckPassword(Password: String): Boolean;
var p: string;
begin p := pass; Result := GetSHA1OfString(Password) = p;
end;
example: pass 12345
Last edited by rinaldo; 10-11-2015 at 16:23.
|