When trying to import a google sheet using the gs_read() function, I get the following error message:
Error in curl::curl_fetch_memory(url, handle = handle) : Peer
certificate cannot be authenticated with given CA certificates
I am following…
I've been trying to use Python-LDAP (version 2.4.19) under MacOS X 10.9.5 and Python 2.7.9
I want to validate my connection to a given LDAP server after I've called the .start_tls_s() (or to have the method raise and exception if the certificate…
I'm working on a proof of concept for blockchain. I've am using bluemix network for blockchain and deploying my application, which I develop locally. I want to test the CA functionalities and want to add users with attributes to the membersrvs.yaml…
I have an android application that is connecting to an SSL web service that we host. The Web server is apache and has its own CA that we created and a self signed SSL certificate.
I have imported our CA certificate onto the Android tablet in the…
I have an azure aks cluster and a local kubeconfig:
apiVersion: v1
kind: Config
clusters:
- name: my-cluster
cluster:
certificate-authority-data: LS0...0tCg==
server: https://api-server:443
contexts:
- name: my-context
context:
…
Env:
Red Hat Enterprise Linux Server release 7.7 (Maipo)
# openssl version
OpenSSL 1.0.2g 1 Mar 2016
so a self-sign cert is generated using OpenSSL and the cacert.pem is put under /etc/pki/ca-trust/source/anchors/.
Now according to the man from…
I have been struggling with an SSL problem for more than 1 month.
We have used openssl to generate our own CA, server and client certificates. We have also
enable "SSLrequire" on the Apache web server (in htaccess this may be wrong), which means…
On our testing environment we are connecting to another server with SSL signed by our company. Every time connection is made nodejs throws
UNABLE_TO_VERIFY_LEAF_SIGNATURE.
I have found workarounds by setting rejectUnauthorized: false, but this is…
I'm trying to connect on a mongodb server, to connect I have to provide a CA cert file and also tls cert file.
When I use the following command I don't have issue
$ mongo --host customhost:port DB --authenticationDatabase=DB -u ACCOUNT -p PWD --tls…
We have a Spring Boot application for REST web services which is still under development.
And we are using self signed certificate for now.
Now, it will be deployed into a system along with 1 more already developed application.
This pre-existing…
I am not completely familiar under the mac os environment, but I am trying to update the ca-certificates following the instructions on this page to solve an error: https://confluence.ecmwf.int/display/WEBAPI/Web-API+Troubleshooting point 3.1.2.3.
I…
I have a go program that connects to an internal API using the httpClient (it's all generated by swagger-codegen).
The internal API is using https and internal certificates with our internal CA.
On my Windows laptop, it works fine without specifying…
My software connects to Dropbox using an HTTPS connection in order to retrieve some sensitive data.
I would like to pin the Certificates Authorities in order to prevent a man-in-the-middle attack.
So far I have the following code:
static bool…
I have a certificate chain that looks like this: root CA -> intermediate CA -> client certificate. How can I validate that a received certificate is explicitly created by "root CA"?
To validate the whole chain is not a problem. This can be done like…