Me and Sebastian Zierer have been working on improving TurboPower LockBox2 to make it work also on 64 bit platforms. Sebastian has taken care of the new Delphi platforms and I've been working on FPC. As a result we should have a version that works on pretty much any Delphi, Kylix and FPC on Windows, Linux and Mac and both 32 and 64 bits.
Latest sources are at:
https://github.com/jarto/lockbox2Before we can do an official release, we'd like to know how many platforms we actually do support. So if you use FPC/Lazarus on FreeBSD or Mac and you'd be interested to do a simple test, please download the latest code and try something like:
uses ...., LbRsa;
...
with TLbRSA.Create(nil) do begin
KeySize:=aks1024;
GenerateKeyPair;
Free;
end;
Please let me know if it compiles or if there are any errors.