ssl-certificate Questions
8
Solved
When I used openssl APIs to validate server certificate (self signed), I got following error :
error 19 at 1 depth lookup:self signed certificate in certificate
chain
As per openssl documenta...
Parttime asked 29/8, 2012 at 14:42
5
Solved
I have a private certificate that was generated by azure for a web app for linux containers. I want to pass this value to my .net core app via the web app configuration settings in the the azure po...
Premier asked 23/9, 2020 at 22:9
5
Solved
Python version: 3.9.1
I trying to write bot that send requests and it work perfectly fine, the only issue that i have is when i trying to use web debugging programs such as Charles 4.6.1 or Fiddler...
Dagmar asked 31/12, 2020 at 3:36
22
Following the instructions in How to: Configure a Port with an SSL Certificate, I entered this command on the command line (duh):
netsh http add sslcert ipport:10.141.146.227:7001 certhash=5d48e604...
Disinherit asked 22/4, 2009 at 21:5
2
Solved
I have move to using VSCode instead of VS2019 but noticed this error comes up when I run.. It still works.. I just need to keep clicking to ignore the error. Is there some easy fix for this ?
Serna asked 28/3, 2020 at 17:41
5
Solved
I just started working on a .NET project again that I hadn't touched in about a month, and suddenly in my localhost environment I'm getting ERR_CERT_AUTHORITY_INVALID errors when I try starting my ...
Jer asked 3/10, 2022 at 6:18
1
I'm trying to extract cert & key from a .p12 file. Running this command in OpenSSL:
openssl pkcs12 -info -in certificate.p12 -nodes
It prompts for a password, but after that I get this error:
...
Grubman asked 19/1, 2023 at 16:34
11
Solved
I understand that normally an SSL (or more precisely X.509) certificate is supposed to be signed by some certifying authority to assure that it is genuine.
In some cases no such signature exists, ...
Raised asked 16/5, 2009 at 0:48
2
After a PC reconfiguration I am unable to use Docker properly, since some curl commands are rejected due to SSL/TLS issues.
In just one example curl -vfsSL https://apt.releases.hashicorp.com/gpg re...
Sainted asked 9/5, 2022 at 6:3
3
I'm new to GKE now am trying to creating a new cluster for RASA. I'm trying to create an ingress with HTTPS to point to a loadbalancer in this cluster. But I'm unable to select the option Create Go...
Saloma asked 30/7, 2020 at 13:50
35
Solved
I am using Git on Windows. I installed the msysGit package. My test repository has a self signed certificate at the server. I can access and use the repository using HTTP without problems. Moving t...
Acinus asked 27/5, 2014 at 9:15
4
Solved
I need to send a SSL Certificate as a string via JSON to my server. On the server I need to reconstruct the JSON string to a valid certificate. My problems are the spaces and line brakes in the cer...
Hennahane asked 28/1, 2013 at 10:51
62
Solved
I'm trying to get tweets using twitter4j library for my java project which uses under the covers java.net.HttpURLConnection (as can be seen in stack trace). On my first run I got an error about cer...
Charqui asked 12/1, 2014 at 15:4
20
Solved
I have a question about how and what is the version of OpenSSl that I must install in Windows to later create certificates.
Install a one version (openssl-1.0.2d-fips-2.0.10) found in SourceForge b...
Forestry asked 31/5, 2018 at 13:17
14
I've gone through the steps detailed in How do you use https / SSL on localhost? but this sets up a self-signed cert for my machine name, and when browsing it via https://localhost I receive the IE...
Mccready asked 17/11, 2011 at 15:43
7
I use Anaconda Navigator for my machine learning experiments. Recently, I have started getting this strange SSL error no matter what I try to install using conda prompt. The error is SSL error. I a...
Ad asked 17/8, 2018 at 10:1
4
Solved
I am using http module in my project but most of my 'post' requests are blocked by postman.
I read it is a ssl issue,after some research i found another module named https.
Here is my current cod...
Botticelli asked 15/4, 2016 at 11:39
15
Solved
I'm trying to connect a Java Web API via HTTPS; however, an exception is thrown:
javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException
I followed these steps which I lea...
Atrium asked 25/4, 2012 at 18:2
3
Solved
I have used
implementation group: 'org.apache.httpcomponents.client5', name: 'httpclient5', version: '5.2'
setSSLSocketFactory() method doesn't exist for this dependency
Souvenir asked 5/12, 2022 at 12:53
3
How can I achieve SSL connection to mssql server through a java program for testing purpose using self-signed certificate? Currently I have tried connection using connection string as follows:
Str...
Rexford asked 26/12, 2013 at 11:56
20
Solved
stream_socket_enable_crypto(): SSL operation failed with code 1.
OpenSSL Error messages: error:14090086:SSL
routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
Im using Laravel 4.2, ...
Couteau asked 31/5, 2015 at 11:19
14
I do want to import a self signed certificate into Java so any Java application that will try to establish a SSL connection will trust this certificate.
So far, I managed to import it in
keytool ...
Gravelly asked 23/7, 2012 at 17:10
3
Solved
In order to perform SSL certificate validation, I am assigning a callback to System.Net.ServicePointManager.ServerCertificateValidationCallback and then I'm trying to build the X.509 chain on my ow...
Ganef asked 10/1, 2018 at 12:13
7
Solved
I'm using requests to communicate with a django app but
When I try
requests.get('https://mysite.com', verify=True)
I get the error:
hostname 'mysite.com' doesn't match either of '*.myhost.co...
Buckshot asked 2/9, 2013 at 17:43
4
Solved
Before, in an older version of express, I could do this:
express.createServer({key:'keyFile', cert:'certFile'});
However, in newer versions of express this no longer works:
var app = express();...
Geisha asked 3/8, 2012 at 22:38
© 2022 - 2024 — McMap. All rights reserved.