Questions about self-signed SSL certificates, e.g. they will not validate in browsers and other systems with default SSL checking and key stores.
Questions tagged [self-signed-certificate]
265 questions
1
vote
0 answers
SSL validation error while calling a REST API with self signed certificate from spring boot
I created an API in springboot which internally calls a REST API which is self signed
The error i am getting is
pkix-path-building-failed-and-unable-to-find-valid-certification-path-to-requested target
Solution i tried
Since i am using EKS for…

George Thomas
- 4,566
- 5
- 30
- 65
1
vote
0 answers
Selfhosted WebAPI on windows service and SSL
Ok, We have an API hosted on windows service. We also have an application that communicates with that API over HTTP. Now, what I want to achieve is communication over HTTPS.
I can create a self-signed certificate programmatically (CertificateRequest…

john_9559
- 41
- 3
1
vote
1 answer
Access Azure key vaults error because of self-signed CA
My local development workstation is behind company's firewall. It uses a self-sign CA which is not trusted. So when I try to access the Azure key vaults using DefaultAzureCredential from @azure/identity, I get the error
FetchError: request to…

user3616544
- 1,023
- 1
- 9
- 31
1
vote
1 answer
Invalid certificate authority error when not working in localhost
I am trying to implement HTTPS on a development website for a demo.
My Front end is a VueJS application and my Back end is a Flask application using Python.
To implement HTTPS on my website I did as following:
Generated self signed…

nJoooy
- 45
- 6
1
vote
0 answers
React native with self signed certificates on M1 chip MacOS
The below is my code for Webservices call, which works fine on both iOS and Android. But for API calls where self signed certificate is used, this does not work. I am using macOS with M1 chip.
To fix this, I used the steps mentioned in…

Ambili
- 11
- 2
1
vote
0 answers
Does ingress controller not require cert? for performing https
We have a http service running behind ingress controller(Azure).
Client send GET/POST request to ingress controller.
Ingress controller speaks https protocol.
Client is able to talk to http service(GET/POST requests) without a certificate(for TLS…

overexchange
- 15,768
- 30
- 152
- 347
1
vote
1 answer
cannot run thinkorswim behind corporate firewall: "unable to find valid certification path to requested target"
In windows, when I install and run thinkorswim inside company network (with its own self-signed ssl cert), it cannot connect via https to tdameritrade's server. How do I update tos's java runtime with the self-signed cert?

kai zhu
- 149
- 1
- 7
1
vote
0 answers
Troubles using -Pin parameter in New-SelfSignedCertificate
My goal is to create a self-signed certificate to use later.
I tried using the parameter -PIN like this:
$password = ConvertTo-SecureString "123456" -AsPlainText -Force
$certif = New-SelfSignedCertificate `
-Type Custom `
-KeySpec Signature `
…

Мария Федорова
- 11
- 2
1
vote
0 answers
Service-worker 'periodicsync' with self-signed certificate
Setup:
I have an ESP32 running a HTTPs-Server with a self-signed certificate. It provides status information about some homeautomation-devices.
Now I built a Vue-based PWA that is served from a public HTTPs-Server with a regular certificate.
The PWA…

groovedigga
- 233
- 3
- 13
1
vote
0 answers
Android network-security-config does not work in API 24 version and below
I'm create android app witch is use backend server. This server use https connection and also use self signed certificate. To be able to communicate with server from android app I've use network-security-config.xml. Here is the…

Y. Petra
- 11
- 4
1
vote
2 answers
Is it wrong to import a self-signed certificate to "Trusted Root Certification Authorities" store?
I have created a self-signed certificate to sign my program.
I noticed that importing the certificate using:
certutil.exe -addstore root "Tmp.crt"
Makes UAC warnings "more friendly" (showing the publisher name, without paying hundreds to…

Mona
- 337
- 3
- 15
1
vote
1 answer
AuthenticationException: The remote certificate is invalid according to the validation procedure
I have 2 asp.net core 3.1 applications. one of them is an IdentityServer and the other one is a Client which make OpenID Connect to IdentityServer if action method have Authorize Attribute.
My IdentityServer has nothing strange. There are just…

Ali Abbasifard
- 398
- 4
- 22
1
vote
0 answers
Stuck with retrofit2 okHttp
After days of reading tutorials incl. android developer page etc. I'm frustrated.
I try to implement a request to my cloud server where I run a database with users. I have my SSL certificate. Problem is that really nothing is working. I tried so…

doc_m
- 53
- 5
1
vote
1 answer
React-native : self-signed certification implementation
Do you known how properly work a fetch call with a self-signed certification in react-native app ?
With a classic fetch :
TypeError: Request failed
With a rn-fetch-blob fetch :
[Error: java.security.cert.CertPathValidatorException: Trust anchor for…

HyperNovax
- 116
- 2
- 12
1
vote
1 answer
Self-signed certificates ok for kubernetes validating webhooks?
I'm trying to understand the security implications for using self-signed certificates for a Kubernetes validating webhook.
If I'm understanding correctly, the certificate is simply used to be able to serve the validating webhook server over https. …

user215997
- 1,267
- 2
- 12
- 12