The current target platform is Win32. The home page is at http://lockbox.seanbdurkin.id.au/ and the sourceforge page is at http://sourceforge.net/projects/tplockbox/
4
votes
1answer
930 views
Delphi XE2 TurboPower component status
The TurboPower components were among the most popular commercial component libraries and are still used by many Delphi developers as they went open source. Instead of asking individually, I thought ...
4
votes
2answers
460 views
Lockbox digital signature component problem
I'm evaluating TurboPower LockBox library for digital signing. I've created a 1024 bit RSA key and tried to sign a 260 bytes of text with it. After changing one or two characters in the text the ...
3
votes
4answers
1k views
2
votes
1answer
133 views
Problem with TRandomStream - Delphi TurboPower LockBox 3
I am using TurboPower LockBox 3 (http://sourceforge.net/projects/tplockbox/ and http://lockbox.seanbdurkin.id.au/tiki-index.php)
I have a problem with the TRandomStream. I'm trying to generate a ...
2
votes
1answer
290 views
Converting TurboPower Lockbox 2 to LockBox 3
I am currently in the process of converting a project (that uses encryption) from Delphi 6 to XE. This project uses the old Delphi Encryption Compendium which does not work in XE. So I figured that I ...
0
votes
3answers
230 views
How to AES-128 encrypt a string using a password in Delphi and decrypt in C#?
I'd like to AES-128 encrypt a string in Delphi with a password. I'd like to upload this to my server and be able to decrypt given the same password in C#.
In Delphi, I'm using TurboPower LockBox ...
0
votes
2answers
106 views
How to change THash.Hash at runtime
How can I change the default THash.Hash algorythm from trhe default SHA-1 to MD5?
The following does not works:
var
StringHash: THash;
begin
StringHash.Create(nil);
StringHash.Hash := 'MD5';
...