Fix #3890: Point to OpenSSL doc for private CA
This commit is contained in:
parent
785c42f463
commit
12a9b9a0b4
@ -450,7 +450,7 @@ static DWORD android_verify_certificate(
|
||||
WLog_DBG(TAG,
|
||||
"The above X.509 certificate could not be verified, possibly because you do not have "
|
||||
"the CA certificate in your certificate store, or the certificate has expired."
|
||||
"Please look at the documentation on how to create local certificate store for a private CA.\n");
|
||||
"Please look at the OpenSSL documentation on how to add a private CA to the store.\n");
|
||||
JNIEnv* env;
|
||||
jboolean attached = jni_attach_thread(&env);
|
||||
jstring jstr0 = (*env)->NewStringUTF(env, common_name);
|
||||
|
@ -220,7 +220,7 @@ BOOL df_verify_certificate(freerdp* instance, char* subject, char* issuer,
|
||||
WLog_INFO(TAG,
|
||||
"The above X.509 certificate could not be verified, possibly because you do not have "
|
||||
"the CA certificate in your certificate store, or the certificate has expired. "
|
||||
"Please look at the documentation on how to create local certificate store for a private CA.");
|
||||
"Please look at the OpenSSL documentation on how to add a private CA to the store.");
|
||||
|
||||
while (1)
|
||||
{
|
||||
|
@ -505,7 +505,7 @@ static DWORD wf_verify_certificate(freerdp* instance,
|
||||
WLog_INFO(TAG,
|
||||
"The above X.509 certificate could not be verified, possibly because you do not have "
|
||||
"the CA certificate in your certificate store, or the certificate has expired. "
|
||||
"Please look at the documentation on how to create local certificate store for a private CA.");
|
||||
"Please look at the OpenSSL documentation on how to add a private CA to the store.\n");
|
||||
/* TODO: ask for user validation */
|
||||
#if 0
|
||||
input_handle = GetStdHandle(STD_INPUT_HANDLE);
|
||||
|
@ -501,7 +501,7 @@ DWORD client_cli_verify_certificate(freerdp* instance, const char* common_name,
|
||||
printf("\tThumbprint: %s\n", fingerprint);
|
||||
printf("The above X.509 certificate could not be verified, possibly because you do not have\n"
|
||||
"the CA certificate in your certificate store, or the certificate has expired.\n"
|
||||
"Please look at the documentation on how to create local certificate store for a private CA.\n");
|
||||
"Please look at the OpenSSL documentation on how to add a private CA to the store.\n");
|
||||
return client_cli_accept_certificate(instance->settings);
|
||||
}
|
||||
|
||||
|
@ -477,7 +477,7 @@ void crypto_cert_print_info(X509* xcert)
|
||||
WLog_INFO(TAG, "\tThumbprint: %s", fp);
|
||||
WLog_INFO(TAG, "The above X.509 certificate could not be verified, possibly because you do not have "
|
||||
"the CA certificate in your certificate store, or the certificate has expired. "
|
||||
"Please look at the documentation on how to create local certificate store for a private CA.");
|
||||
"Please look at the OpenSSL documentation on how to add a private CA to the store.");
|
||||
free(fp);
|
||||
out_free_issuer:
|
||||
free(issuer);
|
||||
|
Loading…
Reference in New Issue
Block a user