Anyone knows how to generate key from a plain-text password? I mean a secure Key derivation function with salt.
ie.
function KeyDerivationProc(APassword : String) : String;
begin
// ...
end;
I'm using Delphi (2010). I thought about DCPcrypt2 and OpenPGPBlackbox, but I'm really lost here.
Any help would be greatly appreciated, thanks!