[openssl-users] Password based key derivation

2015-04-09 Thread Deepak
Hi, Any help on following questions is appreciated. 1) Can the function PKCS5_PBKDF2_HMAC_SHA1() in 0.9.8zf be used to derive a key for AES-256-CBC encryption from user supplied passphrase? 2) Is PKCS5_PBKDF2_HMAC_SHA1() preferable to EVP_BytesToKey() and why ? I see

Re: [openssl-users] Password based key derivation

2015-04-09 Thread Jeffrey Walton
1) Can the function PKCS5_PBKDF2_HMAC_SHA1() in 0.9.8zf be used to derive a key for AES-256-CBC encryption from user supplied passphrase? For the function PKCS5_PBKDF2_HMAC_SHA1, Yes. See https://wiki.openssl.org/index.php/Manual:PKCS5_PBKDF2_HMAC(3). I'm not sure what the significance

Re: [openssl-users] Password based key derivation

2015-04-09 Thread Tom Francis
On Apr 9, 2015, at 3:13 PM, Deepak dpb795...@gmail.com wrote: Hi, Any help on following questions is appreciated. 1) Can the function PKCS5_PBKDF2_HMAC_SHA1() in 0.9.8zf be used to derive a key for AES-256-CBC encryption from user supplied passphrase? Yes. 2) Is