Need to add the function of Generate CSR (Certificate Signing Request), the keytool command looks similar to:
keytool -genkey -alias <ALIAS> -keyalg RSA –keysize <KEYSIZE> -keystore <KEYSTORE>
Mistaken code snippet above, code should look like this:
keytool -certreq -keyalg RSA -alias <ALIAS> -file <FILENAME> -keystore <KEYSTORE>
You seem to have CSS turned off. Please don't fill out this field.
Log in to post a comment.
View and moderate all "feature-requests Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Feature Requests"
Mistaken code snippet above, code should look like this:
keytool -certreq -keyalg RSA -alias <ALIAS> -file <FILENAME> -keystore <KEYSTORE>