Re: Accessing PBKDF2 from command line

2010-09-06 Thread Anthony Thyssen
On Mon, 16 Nov 2009 00:11:59 -0500 Victor Duchovni wrote: | On Mon, Nov 16, 2009 at 01:45:07PM +1000, Anthony Thyssen wrote: | | > In Summery the "openssl" command is deficient. | > | > [ various limitations of enc(1) ] | | At the end of the day, OpenSSL is a *librar

PBKDF2 file encryption in perl

2010-03-17 Thread Anthony Thyssen
something of the form * 16 bytes of random salt * 4 bytes for the ic count in network number format * rest Encrypted data Using a Harecoded AES encryption, and the password PBKDF2 hashed to generate the cryptographic KEY and IV for the encryption. My main problem is I want t

Re: Accessing PBKDF2 from command line

2009-11-15 Thread Anthony Thyssen
t; key + IV perhaps with options for base64 or base16 (hexadecimal) output. For either PBKDF 1.5 using EVP_BytesToKey() or for PBKDF 2 using PKCS5_PBKDF2_HMAC_SHA1() This was my finding during my last phase of development as an application programmer. Anthony Thyssen ( System Pr