The documentation has an article about creating a certificate using OpenSSL. But there are now some problems.
1. Step 1 (creating a RSA key pair) is the easiest step.
2. Step 2 requires that you update or create a config file named "openssl.cnf". The docu writes that the config file is located in the Windows installation directory. This is now wrong. The latest OpenSSL Version does not provide a config file.
There are now some general openssl.cnf files in the Internet available but i am not sure if they all are suited for the API.
The command lines in the API also are little bit misleading because every time you have to write the full path of the file(as example instead of "client-2048.key" the correct way is "c:\OpenSSL-Win32\bin\client-2048.key")
3. Step 3 is very challenging because you have to write a very long command line without any mistake.
But even then i had an error: "Error: Loading extension section ssl-client".
My questions:
Do i have to insert a path in the command line for the Extension - even when there is already a path for the openssl.cnf in the cd line provided.
Between step 2 and 3 i have added the section to the openssl.cnf. Step 2 worked with a file where i had changed already the values in their context. Maybe the changed .cnf is the problem.
Maybe the development team could provide a proper .cnf file.
1. Step 1 (creating a RSA key pair) is the easiest step.
2. Step 2 requires that you update or create a config file named "openssl.cnf". The docu writes that the config file is located in the Windows installation directory. This is now wrong. The latest OpenSSL Version does not provide a config file.
There are now some general openssl.cnf files in the Internet available but i am not sure if they all are suited for the API.
The command lines in the API also are little bit misleading because every time you have to write the full path of the file(as example instead of "client-2048.key" the correct way is "c:\OpenSSL-Win32\bin\client-2048.key")
3. Step 3 is very challenging because you have to write a very long command line without any mistake.
But even then i had an error: "Error: Loading extension section ssl-client".
My questions:
Do i have to insert a path in the command line for the Extension - even when there is already a path for the openssl.cnf in the cd line provided.
Between step 2 and 3 i have added the section to the openssl.cnf. Step 2 worked with a file where i had changed already the values in their context. Maybe the changed .cnf is the problem.
Maybe the development team could provide a proper .cnf file.


Comment