certificate

“Warning: unable to build chain to self-signed root for signer” warning in Xcode 9.2

时光总嘲笑我的痴心妄想 提交于 2020-08-04 08:55:18
问题 I'm attempting to migrate an Xcode project to another computer. It gives me the warning "Warning: unable to build chain to self-signed root for signer" and when it runs it crashes immediately similarly to what is shown in this Stack Overflow: App working on simulator but not on iPhone( dyld`__abort_with_payload dyld`_dyld_start) My issue seems similar to what is described on the Apple Developer Forums here: https://forums.developer.apple.com/thread/86161 and similar to what is described on

What is the best way to generate Certificate Signing Request using AndroidKeyStoreProvider?

大憨熊 提交于 2020-07-30 05:37:28
问题 I read this article. It says how to generate a KeyPair , however it doesn't specify how to generate a Certificate Signing Request based on the generated keys. From my research, to generate a CSR in Java, the samples from the web usually use the package sun.* or the BouncyCastle library. It seems like there isn't a way to generate a CSR with the standard java.security API. I read this and it seems to say the same thing. Do I have no choice but to use BouncyCastle? It is hard to imagine that

how to read certificate if web app is hosted over azure app service

老子叫甜甜 提交于 2020-07-28 04:56:00
问题 I have a asp.net core web api (app1) application which is calling another asp.net core web api (app2) and I am considering app1 as deamon app and I would like to follow client credentials with certificate rather than application secrets. https://github.com/Azure-Samples/active-directory-dotnetcore-daemon-v2/tree/master/2-Call-OwnApi#variation-daemon-application-using-client-credentials-with-certificates Everything works fine till my both app1 and app2 running in local machine where I am

Convert .pem files to .jks

╄→尐↘猪︶ㄣ 提交于 2020-07-24 04:34:50
问题 I received the two private RSA keys in my mail and I copied and saved it as validator.pem and user.pem which I used to connect to remote server. This is working. Now, I need to convert them to .jks files, but I get the following errors: java.lang.Exception: Input not an X.509 certificate validator.pem -----BEGIN RSA PRIVATE KEY----- -----END RSA PRIVATE KEY----- ---------------------------------------------------------- user.pem -----BEGIN RSA PRIVATE KEY----- -----END RSA PRIVATE KEY-----

Convert .pem files to .jks

╄→гoц情女王★ 提交于 2020-07-24 04:31:27
问题 I received the two private RSA keys in my mail and I copied and saved it as validator.pem and user.pem which I used to connect to remote server. This is working. Now, I need to convert them to .jks files, but I get the following errors: java.lang.Exception: Input not an X.509 certificate validator.pem -----BEGIN RSA PRIVATE KEY----- -----END RSA PRIVATE KEY----- ---------------------------------------------------------- user.pem -----BEGIN RSA PRIVATE KEY----- -----END RSA PRIVATE KEY-----

Create my own intermediate cetification authority from commonly trusted certificate

守給你的承諾、 提交于 2020-07-22 21:36:08
问题 I have a simple question (maybe stupid) and i didn't find any clear answer to it. If i get a certificate from a trusted signing company (like verisign...) for one of my server (web for instance), i'll have private an public keys. With this certificate can i set up my own intermediate CA and sign cert request and the be trusted by every one (i know that's shouldn't be..)? My real question is : what will prevent me for issuing certificate and how the company can garanty that nobody does ??

Create my own intermediate cetification authority from commonly trusted certificate

若如初见. 提交于 2020-07-22 21:35:20
问题 I have a simple question (maybe stupid) and i didn't find any clear answer to it. If i get a certificate from a trusted signing company (like verisign...) for one of my server (web for instance), i'll have private an public keys. With this certificate can i set up my own intermediate CA and sign cert request and the be trusted by every one (i know that's shouldn't be..)? My real question is : what will prevent me for issuing certificate and how the company can garanty that nobody does ??

How can I add SSL in keycloak in docker

て烟熏妆下的殇ゞ 提交于 2020-07-21 06:48:13
问题 I'm having an issue adding SSL certificate to Keycloak that is running on docker. I got an SSL Certificate from AWS EC2 with Load Balancer, but don't know how to add it to Keycloak on docker. I was looking through Google but nothing found yet. Also when i go to page like: https://stackoverflow.com, the ssl works perfectly. But when I try to open https://stackoverflow.com:8443 (since 8443 is the port of Keycloak) its not working. Here's the code of Dockerfile of Keycloak: FROM jboss/keycloak:4

Mixed Content error when accessing WebSocket server hosted in a different port

旧巷老猫 提交于 2020-07-18 10:36:33
问题 I've set up an express server with node.js on port 80 (http) and 443 (https). Separate from that server, I've set up a websocket server in a separate port, 8000 : var WebSocketServer = require('ws').Server; var wss = new WebSocketServer({port: 8000}); The site served by express must connect to those services to work. The issue is: accessing my site through http works fine, but, from https , I get: index.js:100 Mixed Content: The page at 'https://example.com/' was loaded over HTTPS, but

Where to put certificates to avoid SSL errors in AMPPS?

笑着哭i 提交于 2020-07-10 07:47:17
问题 I always had an "SSL operation failed" error when using Simple HTML DOM Parser, but I managed to deal with it by placing "cacert.pem" into a relevant folder on my web server. As I am trying to develop my website locally on AMPPS, I cannot find the exact same route and directory. Does anyone know where to put it on AMPPS or other ways to solve this problem? 来源: https://stackoverflow.com/questions/62251495/where-to-put-certificates-to-avoid-ssl-errors-in-ampps