Questions tagged [pfx]

pfx is a file format containing public key together with the private key for encryption and chain of trust certificates attached to the public key if such a chain exists. Pfx files are protected by a password to access.

PKCS#12, that is Public-Key Cryptography Standard number 12, allows all the identity informations to be encrypted in a single cummulative carrier to be utilized and exchanged. That carrier is the pfx file that includes the public key, the private key, and attached certificates and identities accompanying them.

604 questions
25
votes
6 answers

Joining GoDaddy-issued .spc and .key files into a complete .pfx / .cer certificate

I have a GoDaddy-issued code signing certificate in a .spc file. Also, I have a private key in .key file. The code signing has been issued some 13 months ago, then it expired and was renewed with GoDaddy. During the renewal process no private key…
Ondrej Tucny
  • 27,626
  • 6
  • 70
  • 90
25
votes
5 answers

Signing assemblies with strong name using pfx and visual studio

So here is the problem: We have decided to buy a code signing certificate, we bought one from Godaddy which was in p12 format. After researching I found out that p12 and pfx is the same thing with a different extension so I renamed it to pfx. I also…
Ares
  • 1,356
  • 1
  • 9
  • 22
24
votes
4 answers

How to programmatically import a pfx with a chain of certificates into the certificate store?

I am trying to programmatically import a X509 certificate (pfx / PKCS#12) in my local machine's certificate store. This particular certificate has a chain of certificates, the certification path looks something like this: Root certificate…
Edwin de Koning
  • 14,209
  • 7
  • 56
  • 74
24
votes
3 answers

How do I view PFX file information in a visual manner?

I have a PFX file on my drive. I want to see the certificate chain for it. How do I see this? I am asking for a visual tool since I'm sure this won't be the last time I need to view certificate information, and I know of no tool that does this...
Camron B
  • 1,650
  • 2
  • 14
  • 30
22
votes
1 answer

openssl fails to produce a pfx with a valid alias

I am trying to generate a pfx file to use as a signing mechanism for some JAR files as per these instructions. To create the pfx file I am using the following command openssl pkcs12 -export -in my-cert.crt -inkey my-priv-key.key -certfile…
user3198232
  • 223
  • 1
  • 2
  • 4
20
votes
3 answers

classic producer consumer pattern using blockingcollection and tasks .net 4 TPL

Please see below pseudo code //Single or multiple Producers produce using below method void Produce(object itemToQueue) { concurrentQueue.enqueue(itemToQueue); consumerSignal.set; } //somewhere else we have started a…
Gullu
  • 3,477
  • 7
  • 43
  • 70
20
votes
4 answers

Is it possible to convert an SSL certificate from a .key file to a .pfx?

is there a way to convert from a .key file to a .pfx file? thank you. EDIT: I only have the .key file but my hosting provider says that I could convert it to .pfx with just that file.
Santiago Corredoira
  • 47,267
  • 10
  • 52
  • 56
20
votes
3 answers

How to use *.pfx certificate for Amazon ELB SSL

I have cert.pfx file, I need to install to be used in Amazon Elastic Load Balancer. How can I do it?
snowindy
  • 3,117
  • 9
  • 40
  • 54
19
votes
1 answer

How do you install a certificate in a PFX file in to the personal container of the NT-AUTHORITY\NetworkService?

I have a .PXF file used to strongly name several of our .NET assemblies. VS2010/MSBUILD seems to expect this to be in the personal container for the user account running VS2010/MSBUILD. This is all just fine and dandy when working in an…
Pete Stensønes
  • 5,595
  • 2
  • 39
  • 62
19
votes
2 answers

Why would you use a ".pfx" file in .NET

What is the ".pfx" extension used for in .NET? Why does it ask for a password when the solution is being built?
Developer
  • 17,809
  • 26
  • 66
  • 92
19
votes
1 answer

create a pfx file from a .cer and a .pem file

I have used openssl to create a .key and .cer file in pem format (you can read them). Now I want to create .pfx file from them. I have read openssl doumentation it says something like following command I can use openssl pkcs12 -export -in…
user217648
  • 3,338
  • 9
  • 37
  • 61
19
votes
3 answers

Certificate issue: KEY or PFX from P7B and CRT

I'm new to the certificates, and this is a first time I bought it. I generated CSR file (in IIS) and bought certificate using GoDaddy web site. They sent me two files: P7B and CRT. Since I will use the certificate for Azure Web role, I need PFX. How…
Vad
  • 858
  • 2
  • 7
  • 17
19
votes
1 answer

C# Export cert in pfx format

NET to export a certificate from the cert store into a PFX file. I'm trying to use the X509certificate2.Export method with the X509ContentType.Pfx flag set, but am unsure how to handle the returned byte array and output it correctly to file. Any…
J Hunt
  • 850
  • 1
  • 7
  • 14
18
votes
2 answers

SSLError("bad handshake") when trying to access resources Custom Certificates and Requests

I want to program webservices to exchange data in Python using Zeep. I can access services only with my certificate. I have a PFX certificate, but I converted it to two .pem files. My code: from zeep import Client from zeep.wsse.signature import…
lopow
  • 181
  • 1
  • 1
  • 5
17
votes
2 answers

Problem with TemporaryKey.pfx I don't have the password

A client of mine has a problem. He had a Microsoft CRM developper and he left. Now the project remains uncomplete. I've downloaded the source code of the custom applications and I'm not trying to continue the development. I've tried the ClickOne…
Mathieu
  • 4,449
  • 7
  • 41
  • 60
1
2
3
40 41