> From: owner-openssl-us...@openssl.org On Behalf Of Muhammed Shafeek
> Sent: Monday, 02 May, 2011 04:48
> Hi Peter,
> Add padding for CBC mode encryption.
> Or u can use CFB mode. EVB_bf_cfb()
Unnecessary. EVP_bf_cbc (or EVP_*_cbc) already does PKCS5 padding.
(If yo
Hi Peter,
The extra string in o/p is due to error in coding. u r passing incorrect length
in EVP_DecryptUpdate.
if (!(EVP_DecryptUpdate(&dctx, dec_outbuf, &decoutlen, enc_outbuf,
output_buf_size)))
change above line to
if (!(EVP_DecryptUpdate(&dctx, dec_outbuf, &decoutlen, enc_outbuf,
enco
Hi Peter,
The extra string in o/p is due to error in coding. u r passing incorrect
length in EVP_DecryptUpdate.
if (!(EVP_DecryptUpdate(&dctx, dec_outbuf, &decoutlen, enc_outbuf,
output_buf_size)))
change above line to
if (!(EVP_DecryptUpdate(&dctx, dec_outbuf, &decoutlen, enc_outbuf,
encoutlen
Hi Peter,
Add padding for CBC mode encryption.
Or u can use CFB mode. EVB_bf_cfb()
-Shafeek
Hi,
Thank you for the reply. I have edit the code.
Source Code:
//gcc blowfish2.c -L/usr/local/ssl/lib/ -lssl -lcrypto -Wall
#include
#include
#include
#include
#include
#define input_
Hi Peter,
Add padding for CBC mode encryption.
Or u can use CFB mode. EVB_bf_cfb()
-Shafeek
On Sat, Apr 30, 2011 at 7:26 PM, derleader mail wrote:
> Hi,
>I have a problem with the code below. There is a bug that I can't find
> and fix.
> This is the output when I try to run it:
>
> [root@l