certificate

How do I add another developer's certificate to the iOS provisioning portal?

帅比萌擦擦* 提交于 2020-01-12 07:06:13
问题 I've been trying to enable another developer on my team to build an iPad app that we are creating for a client, but am having no luck getting his development certificate uploading into the provisioning portal. I'm starting to think I'm missing something simple. My assumption is that each developer needs to have their own certificate listed on the Certificates -> Development page. Is that right, or are we supposed to be using only one certificate? We tried setting him up with the certificate

Error when connecting to URL - PKIX path building failed

社会主义新天地 提交于 2020-01-11 10:33:12
问题 I am trying to connect to a webpage to gather information, and I am using jsoup to parse the HTML. However, whenever I try to connect to the URL to download the source, I get an error saying something about the PKIX build path. I've looked around, and everything I've found says to add the website's CA Root certificate to my truststore, which I did, but the problem persists (The CA Root cert was already there). I am able to connect to the website through a web browser, but not through a URL

Error when connecting to URL - PKIX path building failed

隐身守侯 提交于 2020-01-11 10:33:06
问题 I am trying to connect to a webpage to gather information, and I am using jsoup to parse the HTML. However, whenever I try to connect to the URL to download the source, I get an error saying something about the PKIX build path. I've looked around, and everything I've found says to add the website's CA Root certificate to my truststore, which I did, but the problem persists (The CA Root cert was already there). I am able to connect to the website through a web browser, but not through a URL

Does adding a certificate exception in Firefox tell it to trust a certificate, an address, or a combination of both?

落爺英雄遲暮 提交于 2020-01-11 09:36:31
问题 Does adding a certificate exception in Firefox tell it to trust a certificate, an address, or a combination of both? See the following hypothetical: First, I hypothetically visit https://foo.com, which uses a self-signed certificate. My browser alerts me that the certificate is self-signed, but I choose to add an exception (in firefox 40's settings under Advanced > Certificates > View Certificates > Servers ). Now let's say I go to https://bar.com, and it presents the exact same certificate.

openssl -connect returns wrong certificate

♀尐吖头ヾ 提交于 2020-01-11 08:35:11
问题 Here is my problem. I have multiple domains hosted on one apache webserver. (Virtual Hosts) Two of them (a.com and b.com) use ssl certificates. I configured both with these commands: SSLEngine on SSLCertificateFile /etc/apache2/ssl/ABC.crt SSLCertificateKeyFile /etc/apache2/ssl/ABC.key SSLCertificateChainFile /etc/apache2/ssl/ABC.chain.crt SSLProtocol all -SSLv2 When i try to connect via browser (chrome, Firefox, IE) it works fine and i get the right certificate. But on android i got an

Java keyTool - append primary/secondary intermediate certificates to key store [closed]

烈酒焚心 提交于 2020-01-11 05:26:07
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I have already created a keystore (server.jks in the image) having imported the relevant key-pair. keytool -importkeystore -srckeystore server.p12 -destkeystore server.jks -srcstoretype pkcs12 I need to append intermediate certificates to it using the java keytool. Using KeyStore explorer tool on windows, I can

Cannot establish SSL connection with Composer with PHP 5.6.3

笑着哭i 提交于 2020-01-11 04:54:09
问题 After cloning a repository on Ubuntu 14.04 with PHP 5.6.3 I am unable to run php composer.phar selfupdate neither php composer.phar update . I get this message: [Composer\Downloader\TransportException] The "https://getcomposer.org/version" file could not be downloaded: SSL ope ration failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed Failed to enable crypto failed to open stream: operation failed I think the issue

iText: what type of certificates do people use to automate PDF signing on Linux?

半世苍凉 提交于 2020-01-10 20:16:10
问题 I have a low volume (<500 PDFs/year) application for automated digital-signing of PDF files using iText in Java on Linux. I've got iText adding a digital signature to PDFs using my SSL certificate. Is this a valid method to prove the PDF was generated by my domain (e.g. server)? Can it be used somehow to get the green checkmarks showing "trust" in Adobe Reader? If not, I should use a certificate intended for PDFs (e.g. not my SSL certificate), so that the little green checkmarks indicating

ApacheJMeterTemporaryRootCA.crt not generated

╄→гoц情女王★ 提交于 2020-01-10 19:20:28
问题 I am new to JMeter. I believe I have installed it successfully and I am running through the script recorder setup (http://jmeter.apache.org/usermanual/jmeter_proxy_step_by_step.pdf). When I start the JMeter proxy server which is used to intercept the browser requests a file called ApacheJMeterTemporaryRootCA.crt should be generated in jmeter/bin folder. It isn't. So, I cannot move on to Install the JMeter CA certificate for HTTPS recording, or for that matter configure my browser. Is there

MakeCert - is it possible to change the key size?

眉间皱痕 提交于 2020-01-10 18:45:25
问题 When I generate a certificate using MakeCert.exe, I want to change the key size from 1024 to 2048. Is this possible? Or do I need to setup a certificate authority (CA)? 回答1: Here the following syntax is used: makecert -pe -ss MY -$ individual -n "CN=your name here" -len 2048 -r Sorry I cannot test it, since I don't have Makecert. 回答2: A description of Makecert options can be found at MSDN, but I didn't see an explicit one for setting the key length. 来源: https://stackoverflow.com/questions