I have a simple des command line:
des -D -k "whatever" file.enc file.dec
des is version des(1) built with libdes v 4.01 - 13-Jan-1997 - eay
I would like to use openssl (version OpenSSL 0.9.8a 11 Oct 2005) instead but I cannot figure out the command line options. I think the closest (based on some random des man page) I have is
openssl enc -d -in file.enc -out file.dec -k "whatever" -iv 0 -des-cbc -nosalt
But no matter which command line options or algorithms I try, I keep getting the error:
5423:error:06065064:digital envelope routines:EVP_DecryptFinal_ex:bad decrypt:evp_enc.c:454:
Any ideas?

desutility use? Where is it from? – Gilles Aug 29 '12 at 19:37