How to configure DES ECB encryption without the "no padding" mode?

2010-04-10 Thread Ali Sydney
All, I am attempting to implement DES (in C++ with the OpenSSL libraries) in ECB mode without padding. I am using the following function for encryption: void DES_ecb_encrypt(const_DES_cblock *input, DES_cblock *output, DES_key_schedule *ks, int enc); However, this function does not

Re: How to configure DES ECB encryption without the "no padding" mode?

2010-04-09 Thread Ali Sydney
/Print ciphertext { printf("%02x",out[i]); } cout< To: openssl-users@openssl.org Sent: Friday, April 9, 2010 10:52:07 AM GMT -06:00 US/Canada Central Subject: Re: How to configure DES ECB encryption without the "no padding" mode? Hi Ali, Thus wrote Ali Sydney (asyd..

How to configure DES ECB encryption without the "no padding" mode?

2010-04-09 Thread Ali Sydney
All, I am attempting to implement DES (in C++ with the OpenSSL libraries) in ECB mode without padding. I am using the following function for encryption: void DES_ecb_encrypt(const_DES_cblock *input, DES_cblock *output, DES_key_schedule *ks, int enc); However, this function does not