I'm trying to figure out how to out what headers and functions to use within my program for creating my own CA when the program runs through it setup.
Thank you for the help.
CEncryptionApplication Servers
Last Comment
chandrasuresh
8/22/2022 - Mon
F. Dominicus
Well one of the mysteries is that besised it's importance the OpenSSL stuffi hopelessly under documented. I just can suggest getting the books "Network Security with OpenSSL" and SSL and TLS, and be very very patient and advanterous.
I guess you will have more luck just using the provided programs and use them via system....
You can use this command to create a CA:
openssl x509 -req -in careq.pem -extfile openssl.cnf -extensions v3_ca \
-signkey key.pem -out cacert.pem
thomasbonham
ASKER
Yes I have used the command line option of openssl many times. I need to do it within C itself. When I set it up on computers they will not have openssl install on them.
I guess you will have more luck just using the provided programs and use them via system....
Regards
Friedrich