Skip to main content

Questions tagged [self-signed]

Self-signed certificates are a type of security certificates that are signed by the same entity that actually uses the certificate.

0 votes
1 answer
38 views

Self Sign Certificates by definition require to generate CA or not necessarily?

I can generate a self-signed certificate using the following classic approach: openssl req -x509 -newkey rsa:4096 -sha256 -days 3650 \ -nodes -keyout lr-server-cert.key -out lr-server-cert.crt -subj ...
Tal Yitzhak's user avatar
1 vote
1 answer
99 views

Can't get chrome to trust my self signed ssl certificate

Context I try to develop a ServiceWorker for my Website The ServiceWorker registration fails because of my untrusted (self signed) cert The url I use locally is https://mypage.local What I tryed to ...
andymel's user avatar
  • 5,178
0 votes
0 answers
66 views

M-tls on Android 29+ using a self-signed certificate

2 weeks ago, I wanted to port my go functionality of an MTS-fetch using a self-singing X509Certificate to Android because we want to support android for a side project of mine. func (a *App) MTLSFetch(...
leon's user avatar
  • 1
0 votes
0 answers
96 views

Maui WebView error with selfsigned certificate

I'm using Maui webview to show my local angular app on http://192.168.1.X:4200 The Angular app in question uses .net core APIs hosted locally at https://192.168.1.Y/nameofapis Starting my Maui app, I ...
PuntanetDeveloper's user avatar
0 votes
1 answer
34 views

ERR_SSL_VERSION_OR_CIPHER_MISMATCH when using self-signed certificates with network IPs

I am attempting to create self-signed certificates in order to test some SSL functionality locally. To create the self-signed certificates I've performed the steps below: Step 1. Create Root crt / key ...
nick_j_white's user avatar
0 votes
0 answers
60 views

Flutter User Trusted Credentials aren't trusted on Android

I am trying to connect to an endpoint using self-signed CA that I've imported to Android's User Trusted Credentials. Unfortunately I can't connect to such endpoint until I load cert from the Dart ...
Tom Raganowicz's user avatar
0 votes
2 answers
40 views

How can I create a simple signed certificate for my Windows Forms .NET app in Visual Studio 2022

I published my app and it worked on my developer pc but when i installed the app on another pc, the installation went well, but when I started the app, it hangs. I suspect I need a (self signed) ...
Harm Degenaar's user avatar
0 votes
0 answers
35 views

M2MQTT throwing communicationException on mqttclint.connet

Below is my code snippet to coonect to MQTT with SSL certificates X509Certificate caCert = X509Certificate.CreateFromCertFile(Path.Combine("D:\Certificates", "cacert.pem")); ...
user23613162's user avatar
0 votes
0 answers
146 views

Automatically reload self-signed certificates in Traefik without having to restart pods every time

I'm trying to renew self-signed certificates on traefik without having to restart pods every time. So far I have tried following configurations: # docker-compose.yml version: '3.9' services: ...
hshm24w's user avatar
0 votes
0 answers
50 views

chromiumembedded / java-cef How to ignore SSL certificate?

I am trying to create a connection with the CefBrowser from chromiumembedded / java-cef in Eclipse Java to a website with an invalid SSL certificate. Unfortunately, I always get this error message: [...
Dominik's user avatar
  • 21
0 votes
0 answers
72 views

Error: self-signed certificate in certificate chain

This error happened so I could not fixed. I should get an email but it did not send an email. Error: self-signed certificate in certificate chain at TLSSocket.onConnectSecure (node:_tls_wrap:1674:34) ...
Mavlon Turguunov's user avatar
0 votes
1 answer
306 views

Warning from self-signed certificate using OpenSSL

I've generated a self-signed certificate using this command, with CN equal to "localhost": openssl req -new -newkey rsa:4096 -x509 -sha256 -days 365 -nodes -out cert.pem -keyout private.pem (...
Steven Mechanicalbyte's user avatar
0 votes
2 answers
1k views

"SSL certificate verify failed: self-signed certificate in certificate chain" when pip install

I'm behind a company proxy with a self-signed certificate and I want to install tensorstore via pip. pip apparently downloads and runs a Python script bazelisk.py that in turn uses urllib to get more ...
Green绿色's user avatar
  • 2,335
0 votes
1 answer
111 views

Certificate Errors, involving Python v3, and Splunk

I'm working with setting up and input for Splunk 9.0.4 to pull data from an external source, I've gotten this to work on some systems, but one is giving me some problems with a certificate issue. ...
Paul Arbogast's user avatar
0 votes
0 answers
89 views

I am trying to post msg to kafka topic using nodejs for client ,how to attach client "CA" certificate while doing request through kafka obj

i have a kafka topic where i am trying to post msg through nodejs , but getting error as " self-signed certificate in certificate chain" , but i want to attach my own client certificate ...
Ganesh Bandewar's user avatar

15 30 50 per page
1
2 3 4 5
54