Problem decoding a PKCS7 structure

2004-09-18 Thread Antonio Ruiz Martínez
Hello! I have a PKCS#7 that I can't parse with Openssl, I've tried to parse it with other libraries such as IAIK and CAPICOM and it works, but with Openssl after executing d2i_PKCS7, when I am doing PKCS7_dataInit, it crashes. I don't know if there is a bug or the PKCS#7 created the other li

Re: Problem decoding a PKCS7 structure

2004-09-18 Thread Dr. Stephen Henson
On Sat, Sep 18, 2004, Antonio Ruiz Martínez wrote: > Hello! > >I have a PKCS#7 that I can't parse with Openssl, I've tried to parse > it with other libraries such as IAIK and CAPICOM and it works, but with > Openssl after executing d2i_PKCS7, when I am doing PKCS7_dataInit, it > crashes. I

Re: Problem decoding a PKCS7 structure

2004-09-18 Thread Antonio Ruiz Martínez
Hello! Dr. Stephen Henson wrote: On Sat, Sep 18, 2004, Antonio Ruiz Martínez wrote: Hello! I have a PKCS#7 that I can't parse with Openssl, I've tried to parse it with other libraries such as IAIK and CAPICOM and it works, but with Openssl after executing d2i_PKCS7, when I

Re: Problem decoding a PKCS7 structure

2004-09-18 Thread Dr. Stephen Henson
On Sat, Sep 18, 2004, Antonio Ruiz Martínez wrote: > Hello! > > Dr. Stephen Henson wrote: > > > >The structure from the other library is malformed: it contains an illegal > >garbage EOC tagged onto the end, and you can't jut delete it because the > >lengths wouldn't match. > > > > > > > Thanks