TurboPower LockBox Wiki
TurboPower LockBox 2 & 3 Cryptographic Library for Delphi
Brought to you by:
marcocantuemb,
tpsfadmin
the inno setup files are point to drive V and not relative to the installation folder.
in build\Inno script\Setup.iss
there is:
define SourceProductPath "V:\projects\turbopower\lockbox3\Executable bay\Staging bay - Input to install engine"
define HelperPath "V:\Projects\TurboPower\LockBox3\Executable bay"
define LockBoxSourceRoot "V:\projects\turbopower\lockbox3\trunc"
define OutputDir "V:\Projects\TurboPower\LockBox3\Executable bay\Workspace - Install engine output"
if you assume that the code was checked out with svn, you can assume the folder strucher integrity. meaning you can direct the installion files with .\ current durectory ..\ perent directory.
tried to compile the inno setup code .
if you want me to to it, let me know.
Last edit: dsaggagsdf 2013-11-19
Hello,
I'm trying to install Lockbox 3 for Delphi XE6 but it keeps generating an error. It says the uTPLB_OpenSSL.dcu isn't found but I can't for the life of me fix this problem. Perhaps I am doing something wrong when installing it. Here's step by step what I did to install LockBox 3.4.3.
This is where I get an error, see the screenshot below. I cannot for the life of me figure out what I am doing wrong. The file is not present in ..\DXE6\Win32\Debug. Some help would be greatly appreciated. Please treat me like I am four years old as I am obviously missing something but can't figure out what.
Cas,
I no longer maintain the project on SourceForge. Somebody else does.
I have forked the project and maintain the forked version on GoogleCode
(https://code.google.com/p/tplockbox/)
If you uninstall TP LockBox 3.4.3 and and install the 3.5 version from
GoogleCode, and have any problems, please address the LockBox 3 forums
(http://lockbox.seanbdurkin.id.au/tiki-view_forum.php?forumId=2)
Faithfully,
Sean B. Durkin
On 29/07/2014 9:20 AM, Cas Wegkamp wrote:
What's the passcode for the forum because this aint working. Now I get the error that tp_lockbox_xe6.bpl is missing. Why doesnt it have an installer anyway?
Hi, I used version 2.07 in Delphi2007 and now I would like to migrate to Delphi 10.4.2. I installed the TPLockbox version from getit. I was able to use the TLbDES component and encrypt and decrypt as in version 2.07 but the TLb3DES was not.
I used version 2 like this:
var Key128 : TKey128;
GenerateMD5Key(Key128, '12345abcd6789');
str := TripleDESEncryptStringEx(componifile,Key128,True);//OR FALSE to decrypt
I tried to use the same method with new version but it doesn't decrypt correctly:
var decstri: string;
Lb3DES1.SetKey(Key128);
Lb3DES1.GenerateKey('12345abcd6789');
decstri := Lb3DES1.DecryptString(strigtodecrypt);
Of course I'm trying to decrypt a file encrypted with version 2.07.
Unfortunately I cannot simply replace one with the other because otherwise the previously encrypted data would be lost.
What am I doing wrong?
Thank you
Last edit: Daniele 2023-11-29