Questions tagged [certificate]

A certificate is an electronic document used in cryptography.

In cryptography, a public key certificate (also known as a digital certificate or identity certificate) is an electronic document which uses a digital signature to bind a public key with an identity — information such as the name of a person or an organization, their address, and so forth. The certificate can be used to verify that a public key belongs to an individual.

See the Wikipedia entry for more background and concepts regarding certificates.

9943 questions
4
votes
3 answers

Profile doesn't include certificate

Using Xcode 9.1, after building an iOS app, I try to archive it. But I get the following error message: Provisioning profile "MyAppProfile" doesn't include signing certificate "iPhone Developer: My Name (X1YZ2AB3CD)". What is the simplest way to…
Michel
  • 10,303
  • 17
  • 82
  • 179
4
votes
1 answer

How can openssl verify the server certificates' chain without Root CA certificate

1) Here openssl verifies the www.google.com certificate, telling me everything is fine, see last line from the openssl return output: Verify return code: 0 (ok) 2) But the actual root CA certificate is not sent, here the last intermediate CA…
user2050516
  • 760
  • 2
  • 5
  • 15
4
votes
2 answers

How to load a certificate from "Credential storage"?

My network code is written in NDK (cURL + OpenSSL) and I'd like to use a certificate from Android's credential storage as a client certificate for a SSL connection. Moreover, I'd like to offer a list of available certificates to the user, so he can…
zdenek
  • 21,428
  • 1
  • 12
  • 33
4
votes
1 answer

Empty result in loading certificates from SafeNet HSM

I have a certificate on SafeNet HSM and i can browse HSM slots and see certificates. But when i try to load certificate with java keytool i get this message "your keystore containes 0 entries". below is explanation how do i connect to HSM. this is…
Leon
  • 198
  • 8
4
votes
1 answer

X509Certificate2Collection.Find() method, using FindByTimeValid criteria, not working

I am using the following code to get only the valid (by time) certificates on the machine: var store = new X509Store(StoreName.My, StoreLocation.CurrentUser); store.Open(OpenFlags.ReadOnly | OpenFlags.OpenExistingOnly); var storeCol =…
Pedro Gaspar
  • 777
  • 8
  • 35
4
votes
2 answers

Troubleshooting QuickBooks Web Connector issue

Try to troubleshooting QuickBook's Web Connector by following helping URL: Click Me. When I try to Add an application into Web connector getting following error: "QBWC1048: QuickBooks Web Connector could not verify the web application server…
4
votes
1 answer

How to add custom certificates to Jenkins internal JDKs?

I've got a problem with Jenkins. I'm using the current LTS build (2.60.2) on a master/slave environment (Master: Debian no workers, Slave1: Windows 8 workers, Slave2: Debian 8 workers). The Jenkins Master uses SSL to secure communications and is…
The_Gentleman
  • 1,045
  • 2
  • 10
  • 18
4
votes
1 answer

push notification connecting error

I'm using php script for pushing notification on my application. But on following line $fp = stream_socket_client('ssl://gateway.sandbox.push.apple.com:2195', $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx);" where $ctx =…
vicky1456
  • 41
  • 1
  • 2
4
votes
1 answer

How to export android studio certificate or keystore from another pc

I have a problem where I am updating an app in a different pc and I have to insert the new signed apk to release the apk. Is there any option for me to export the keystore from the previous pc to the current pc. Because I've being informed if I want…
shrh0327
  • 59
  • 1
  • 6
4
votes
0 answers

Error when browser-sync is proxied with local https server

I have a REST API server running at https://localhost:7001. This one uses a JKS keystore for configuring https. A combination of gulp + browser-sync + proxy-middleware that spins up a server serving static content at https://localhost:3000. All…
Simo
  • 2,292
  • 5
  • 30
  • 45
4
votes
3 answers

How to accept/find the certificate from an opc ua server?

I am new to opc ua and not a pro in java. While setting up a client in java I'm having trouble with the certificate dealing. I want to connect to the server via Basic 256, SignAndEncrypt. As I understand, in this stage of security a certificate,…
Nanda
  • 51
  • 1
  • 6
4
votes
1 answer

How to renew a code signing certificate

I have a code signing certificate from Thawte that is about to expire in a couple of weeks. I have paid for a renewal, and i have received a renewal .cer file. I have successfully created an updated .pfx file that allows me to sign Firefox addons,…
Xanderous
  • 41
  • 3
4
votes
0 answers

How do I sign an Android Application with your Google Play appointed Upload Key?

I created a keystore, created a key, and then signed my first app. I proceeded to upload the signed APK to the Google Play store, and multiple people have already downloaded the beta app. Since then, I have made some updates to my app and I need to…
4
votes
0 answers

Kestrel HTTPS: An unknown error occurred while processing the certificate

Having background errors thrown by Kestrel but not preventing user to use web server properly in HTTPS mode. Those errors are occuring every 20minutes roughly even if there is no activity on web server. "System.AggregateException: One or more errors…
4
votes
1 answer

The selected certificate is not valid for coded signing

I have the following Powershell script to create a new cert for a C# application: $expirationDate = [datetime]::Today.AddYears(5) $thumb = (New-SelfSignedCertificate -CertStoreLocation cert:\localmachine\my -DnsName $env:USERDNSDOMAIN…
Al Lelopath
  • 6,448
  • 13
  • 82
  • 139
1 2 3
99
100