new c_rehash, was RE: differing outputs using cli utility and c interface

2014-11-20 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of Malatesh Ankasapur > Sent: Tuesday, November 18, 2014 23:17 Note: you should post a new topic as a new message, not a reply. subject fixed > citrix reciever using the symbolic link .pem certificate so i did c_rehash > for my ceritficate > 1. op

Re: differing outputs using cli utility and c interface

2014-11-18 Thread Malatesh Ankasapur
Dear All, citrix reciever using the symbolic link .pem certificate so i did c_rehash for my ceritficate 1. openssl-0.9.8e created 1 hash value for my certificate. but i dont know why openssl-1.0.0 is creating 2 hash value suppose i am going to update openssl in my linux, its depends on the libc,

Re: differing outputs using cli utility and c interface

2014-11-18 Thread Andrej Manduch
Hi Josh, With your openssl command you're useing DES in CBC mode however in you C code you're useing DES in CFB mode which are completly different. Don't feel bad about this. This is a quite common mistake which lot of newbie do. I don't want to explain how block cipher work, how to use them (mos