[EMAIL PROTECTED] wrote:
> Hello Goetz,
Hello Martin,
> thank you very much for this information.
> My problem is that the german health insurance companies expect PEM mail.
> So I have no choice.
> It would be very helpful to know how to create Pem mails.
As I said: you can do the signing manual
Hi All,
I have to read x509 certificate(in .pem format) from memory.
I have written two functions.
Fn.1
/* get X509 structure from memory. */extern X509 *mem2x509(vchar_t *cert){ X509 *x509;
unsigned char *bp;
bp = (unsigned char *) cert->v;
x509 = d2i_X509(NULL, &bp, cert->l);
if(x509 ==