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
-1
votes
1 answer

How to add PFX installed certificate to Windows.Web.Http.HttpClient

i have manually installed pfx extention certificate to my machine . How to get and pass in Windows.Web.Http.HttpClient i tried following way but no luck var myFilter = new HttpBaseProtocolFilter(); CertificateQuery certQuery = new…
Ragavan
  • 2,984
  • 5
  • 22
  • 24
-2
votes
1 answer

How can I persist my pfx file inside a docker

In my desktop application I have a pfx file that should be protected safely. If I am using docker for this application, how can I protect the pfx file inside the docker. It should not be accessible by the other applications and it should persist…
Anu Hardin
  • 65
  • 8
-2
votes
1 answer

How to get .pfx file from .cer and .key in NodeJS?

How to get .pfx file from .cer and .key in NodeJS? class SAT { constructor() { this.options = { wsdl_options: { pfx: { cer: fs.readFileSync(publicKeyPath), key:…
-2
votes
1 answer

How to encrypt data with a pfx file

I have pfx file and I need to encrypt a data by using it and Java. First I converted it to a .pem file. But still I do not know what to do with both now.
Tim Tuckle
  • 1,372
  • 7
  • 21
  • 31
1 2 3
40
41