X509 certificate

I currently use openssl to generate my key pairs using

openssl genrsa -out privatekey.pem 1024 openssl req -new -x509 -key privatekey.pem -out publickey.cer -days 1825

The web service I use accepts the x509 key file generated.

Is there any way to get this file generated using the classic framework crypto module?

I don’t think so.
But I may be able to add plugin functions for that.

[quote=304805:@Wayne Golding]I currently use openssl to generate my key pairs using

openssl genrsa -out privatekey.pem 1024 openssl req -new -x509 -key privatekey.pem -out publickey.cer -days 1825

The web service I use accepts the x509 key file generated.

Is there any way to get this file generated using the classic framework crypto module?[/quote]
Crypto does not create x509 certs.

I was looking to validate an x509 certificate without resorting to the command line. Googling, I ended up here and was pleased to find Christian did add the functions to X509MBS after this thread was closed. I thought I should add this information for someone else looking for a solution in the future.

Saved me a bunch of time, thanks again MBS! :slight_smile:

1 Like