TurboPower LockBox 3 is a native-code open source cryptographic library written in Delphi.
0
votes
1answer
64 views
DCPCrypt to Lockbox3 migration
I'm a newbie on encrypting/decrypting routines.
I'm trying to use Lockbox3, which I want migrate my app to, in order to decrypt a string encrypted by using DCPCrypt.
Let's say I have this function to ...
-2
votes
2answers
251 views
Understanding encrypting a file, using LockBox 3 and Delphi XE2
So my current task involves taking a given string of text (Ex: ABC123) and encrypting it using LockBox3's EncryptString(source, target) function. I can successfully encrypt the string and get the ...
2
votes
1answer
439 views
TPLockBox3 and PHP - AES Encrypt in Delphi, Decrypt in PHP
I have a trouble with lockbox3 and PHP mcrypt. I can't pass IV to PHP. Delphi code:
var
Codec: TCodec;
CL: TCryptographicLibrary;
PlainStream: TStringStream;
CipherStream: TMemoryStream;
...
2
votes
1answer
260 views
PHP implementing Ciphertext Stealing (CTS) with CBC
I have been trying to implement Ciphertext Stealing(CTS) in PHP for CBC.
Referring below two links
How can I encrypt/decrypt data using AES CBC+CTS (ciphertext stealing) mode in PHP?
and
...
1
vote
1answer
722 views
AES Encrypt/Decrypt Delphi & PHP
My Delphi application uses TurboPower LockBox 3 to encrypt a plaintext information using AES 256. I now want to decrypt this information using PHP.
But TurboPower LockBox 3 has some interoperability ...
1
vote
1answer
200 views
LockBox Stream read error, RSA
I'm loading a RSA key from a stream and getting an "Stream Read" error? What's the first thing I should try to get my code working?
0
votes
1answer
396 views
Turbopower Lockbox3 - Can I control initialization vector and padding for AES-256 encryption?
In the process of moving from Delphi2007 to XE2, we are thinking about switching encryption libraries from DCPCrypt to Turbopower Lockbox 3.
a) In DCPCrypt I have explicit control over the ...
5
votes
2answers
680 views
Secure keypair encryption solution in Delphi & PHP?
My application sends encrypted files over the internet, I need to be able to do the following:
(Client side Delphi 2010): Encrypt files using public key shipped with my application & upload it ...
0
votes
1answer
220 views
TSimpleCodec.Begin_EncryptMemory - Wrong mode
I get TSimpleCodec.Begin_EncryptMemory - Wrong mode exception wile executing the following code. Is it something wrong?
FLibrary := TCryptographicLibrary.Create(Self);
FCodec := ...
1
vote
1answer
242 views
TurboPower LockBox how can one use AES with a byte array as key
I want to encrypt a file but i have the key as a byte array. I do not want to use a password.
Is it possible ?
0
votes
1answer
247 views
Convert Lockbox2 cipher text to Lockbox3 cipher text
Is there a way I can Convert my Lockbox 2 Cipher text to LockBox 3 Cipher text.
We are migrating our application built on Delphi 2007 to Delphi xe2, we used the Lockbox 2 RSA Encryption algorithm in ...
0
votes
1answer
960 views
How to use AES-256 encryption in lockbox 3 using delphi
I've downloaded Lockbox3 about a week ago and i can't use it, and i couldn't understand the demo because it's complex i couldn't get the codes i want from it, I'd like to use lockbox 3 AES-256 ...
1
vote
3answers
3k 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
319 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';
...
9
votes
1answer
4k 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 ...
2
votes
1answer
224 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
764 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 ...
4
votes
2answers
767 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
2k views