On Thu, Oct 23, 2003, Pierre De Boeck wrote: > Hi all, > > I just try to recompile my openssl applications with > the 0.9.7c and the PKCS12_decrypt_d2i function no longer > exist. > > I can use my own decrypt/d2i function but I would prefer > to use what OpenSSL provides as a replacement, if any. > Any idea? >
This undocumented function used the (now obsolete) old ASN1 functions. The equivalent is PKCS12_item_decrypt_d2i() which uses the new ASN1 functionality. It shouldn't be too hard to use the new function unless you are using you own ASN1 module. If you are you should convert that to the new format. Steve. -- Dr Stephen N. Henson. Core developer of the OpenSSL project: http://www.openssl.org/ Freelance consultant see: http://www.drh-consultancy.demon.co.uk/ Email addresses, PGP and S/MIME: see homepage. ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]
