Tagged Questions

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

learn more… | top users | synonyms

71
votes
15answers
20k views

Cannot import the following keyfile: blah.pfx. The keyfile may be password protected

We just upgraded our Visual Studio 2008 projects to VS2010. All of our assemblies were strong signed using a Verisign code signing certificate. Since the upgrade we continuously get the following ...
18
votes
4answers
38k views

Convert .pfx to .cer

Is it possible to convert a .pfx (Personal Information Exchange) file to a .cer (Security Certificate) file? Unless I'm mistaken, isn't a .cer somehow embedded inside a .pfx? I'd like some way to ...
14
votes
2answers
5k views

“An internal error occurred.” when loading pfx file with X509Certificate2

I'm trying use self-signed certificate (c#): X509Certificate2 cert = new X509Certificate2( Server.MapPath("~/App_Data/myhost.pfx"), "pass"); on a shared web hosting server and I got an error: ...
9
votes
2answers
6k views

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?
8
votes
2answers
2k views

Certificate problem - Error Importing Key “object already exists” after Windows 7 upgrade

I have about 60 .pfx files for all major assemblies for a project. They are unique files, but I use the same password for all. After an upgrade from Windows Vista to Windows 7 I get an Import Key ...
5
votes
5answers
2k views

C# Parallel Vs. Threaded code performance

I've been testing the performance of System.Threading.Parallel vs a Threading and I'm surprised to see Parallel taking longer to finish tasks than threading. I'm sure it's due to my limited knowledge ...
5
votes
1answer
392 views

Signing in Visual Studio 2005 - error using existing .pfx

Built my project. Created my .pfx using sn.exe -k (to create ShellTradingCCMPROD.pfx). Copied the file to the application folder. In VS 2005, I go to the Signing tab, 'Select From File' and browse to ...
4
votes
3answers
133 views

what is the correct way to cancel multiple tasks in c#

I have a button thats spawns 4 tasks. The same button changes to a cancel button and clicking this should cancel all 4 tasks. Should I pass the same cancel token to all 4 tasks and have them poll on ...
4
votes
1answer
1k views

How to retrieve certificates from a pfx file with c#?

I've been googling around for half a day looking for a way to read a pfx file and import the certifcates into the certstore. So far, i am able to read the pfx file with X509Certifcate and able to ...
4
votes
4answers
1k views

Multithreading or task parallel library

I have an application which performs 30 independent tasks simultaneously using multithreading, each task retrieves data over http, performs a calculation and returns a result to the ui thread. Can I ...
3
votes
1answer
67 views

strong naming with pfx

I'm trying to strong name an assembly with a pfx that is also used for digitally signing. The pfx cert has the CodeSigning option and was provided by a CA. When I try to use it I get the following ...
3
votes
2answers
131 views

What is the standard practice for starting a task with multiple parameters

Right now I have class MyParamClass { all the parameters I need to pass to the task } MyParamClass myParamObj = new MyParamClass(); myParamObj.FirstParam = xyz; myParamObj.SecondParam = abc; ...
3
votes
4answers
697 views

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); ...
3
votes
1answer
433 views

Open pfx certificate container in .NET

Where can I find information on opening a PFX store which contains a certificate? I came across this, however I am kind of loast at the PfxOpen Class. Edit - I have a pfx file exported with a private ...
3
votes
1answer
796 views

CruiseControl.NET service failing to build due to MSBuild ResolveKeySource error, despite certificate being imported

We just had an XBAP/WBA project added to our build server. It uses a PFX file for signing. I imported the PFX file to the CruiseControl.NET service certificate store, and can see it in the ...
3
votes
4answers
2k views

Decode a PKCS#12 file

I am looking for ways to decode a PKCS#12 file in .NET, I need to extract the private key and any certificates so that i can programatically access the following. modulus publicExponent ...
3
votes
3answers
6k views

How can I create a PFX file from a Java Keystore?

I have a Java keystore (.jks file) holding a single certificate. How can I create a .pfx file from this keystore?
2
votes
1answer
180 views

SSL certificate file type

Bit of a silly question, but: What kind of file(s) do you get when you buy an SSL certificate from a trusted CA? Is there a .pfx file? I'm working on a small tool to manage SSL certificates, but ...
2
votes
2answers
131 views

how to cancel a task that is waiting with a timeout without exceptions being thrown

mytask.start() bool didTaskRunInTime = mytask.wait(5 mins, _cancelToken) EXCEPTION on above line if you set the cancel token on a say click of button before the 5 min timeout period. Which means ...
2
votes
1answer
163 views

Waiting on a Task with a OnlyOnFaulted Continuation causes an AggregateException

I have some simple code as a repro: var taskTest = Task.Factory.StartNew(() => { System.Threading.Thread.Sleep(5000); }).ContinueWith((Task t) => { Console.WriteLine("ERR"); }, ...
2
votes
1answer
275 views

how to convert java jks keystore to pkcs12 certificate programatically?

Is there is any that i can convert ava jks keystore to pkcs12 certificate programatically? Abdul Khaliq
2
votes
2answers
935 views

Store X509 Certificate in database

In order to access to the web service I need a certificate. I generated my certs: openssl genrsa 1024 > private.key openssl req -new -x509 -nodes -sha1 -days 1100 -key private.key > public.cer ...
2
votes
4answers
2k views

Visual Studio Error: PFX - Error Importing Key / Object already exists

I have a VS 2008 ClickOnce solution that I am attempting to compile with "Sign Manifest" turned on. With this option checked, I am prompted for my PFX's password, and upon entering the correct ...
2
votes
1answer
301 views

InvalidOperationException using PFX w/ Windows Forms

I have two exceptions here. Not sure why they occur because I use Form.Invoke to run UI updates on the UI thread. So first, using System; using System.Collections.Generic; using ...
2
votes
3answers
4k views

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.
1
vote
4answers
59 views

How can I generate a .pfx file?

Is there any way to create .pfx files in order to sign documents, I've found a program called x509 Certificate Generate,but I want to know if it can be generated in code using c#.
1
vote
1answer
79 views

How to trust a certificate in Windows Powershell

I am using Windows 7, and want to run signed scripts from Powershell, the security-settings of Powershell are set to "all-signed", and my scripts are signed with a valid certificate from my company. I ...
1
vote
2answers
104 views

PFX Self Signed x509 Certificate with password secure

After looking at how to generate self-signed digital signatures from Creating a self-signed certificate in C#, I can call CreateSelfSignCertificatePfx and get PXF data in a byte array back, which can ...
1
vote
0answers
139 views

How to create a snk from pfx / cer?

Microsoft seems to have created a certification jungle, that is hard to understand. Microsoft X.509 certificate (.cer) Personal Information Exchange (.pfx) Assembly Signature Key Attribute ...
1
vote
1answer
133 views

Eclipse update site - how to sign jars?

I have a few Eclipse plugins that are part of a feature. We would like to apply code signing to these plugins when the update site is updated. I can see the JAR Signing tab when exporting an ...
1
vote
2answers
279 views

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 ...
1
vote
1answer
442 views

Conversion from cert file to pfx file

Is it possible to convert a cert file to a pfx file? I tried importing my cerf file into IE, but it is never shown under the "personal" tab, thus I cannot export there. I am looking for if there is ...
1
vote
2answers
854 views

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 ...
1
vote
0answers
602 views

Can not create SSL/TLS secure channel in .NET client to Web Service

I am currently trying to send data to a web service and get a response using .NET Framework 3.5. I have got it down to this exception which is; 'WebException was unhandled. The request was ...
1
vote
2answers
141 views

Security issues in accepting passwords vs auto generating the password

I am developing a console application. This application generates a self signed certificate and installs it in the current machine's certificate store. The steps involved are :- Generate a ...
1
vote
2answers
1k views

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 ...
1
vote
1answer
2k views

Convert .PEM certificate to .PFX Programatically using OpenSSL

I've got a .PEM file that I want to convert to a PKCS12 file (PFX) and I know I can easily accomplish this using the following openssl command: Create a PKCS#12 file: openssl pkcs12 -export -in ...
1
vote
1answer
1k views

using OpenSSL to create .pfx file

I've been offered some commands to create a .pfx file using OpenSSL. For the most part, my partner gathered this information from: ...
1
vote
2answers
1k views

Install a pfx certificate in a users store in Windows using WiX

Please, can someone provide me with a WiX snippet or solution for the mentioned scenario. I need to include the pfx file in the WiX msi and the user will download my msi to his machine via the ...
1
vote
1answer
752 views

Change pfx password in .NET

I wonder how to change the password for .pfx file using crypt32.dll. I tried : public bool ChangePassword(String pfxfilename, String pswd, String newPfxfilename, String newPswd) { IntPtr ...
1
vote
1answer
2k views

C# Export cert in pfx format

Hi im trying to use .Net and c# to export a certificate from the cert store into a PFX file. I'm trying to use the X509certificate2.export method wiht the X509ContentType.Pfx flag set, but am unsure ...
1
vote
1answer
1k views

Associate private key to certificate for PFXExportCertStoreEx

I'm trying to export certificate to pfx file. Here's what I do (simplified): h = CertOpenStore(CERT_STORE_PROV_MEMORY, 0, NULL, CERT_STORE_CREATE_NEW_FLAG, NULL); p = ...
1
vote
1answer
614 views

PFX ConcurrentQueue - is there a way to remove a specific item from the queue

I have an app that has a ConcurrentQueue of items that have an ID property and a ConcurrentQueue of tasks for each item, the queue items look like: class QueueItem { public int ID { get; set; } ...
0
votes
0answers
34 views

How do I deploy “makecert” Certificates for WCF PeerTrust

I have a situation where I have a WinForm client that I want to communicate with a WCF webservice over wsHttpBinding using Message security via Certificates using PeerTrust. The WCF webservice will ...
0
votes
1answer
27 views

Reading data from a certificate file

I have a local setup of Open SSL. For every certificate request i create a ...cert.pem and ...pfx file. I need open the cert.pem and the pfx to read the below data 1) Certificate serial id 2) Expiry ...
0
votes
1answer
149 views

Visual Studio 2010 PFX Code Signing

Sorry if asked before. Using Visual Studio 2010, I am trying to sign my assemblies with a pfx file so that on build it does the same work as: signtool sign /f myKey.pfx /p password1 myDll.dll I ...
0
votes
1answer
88 views

pvk2pfx.exe - can not find

Please, those who have Visual studio, send me the file pvk2pfx.exe. It is located in your /Visual Studio 8/Common7/Tools/bin/pvk2pfx.exe It is missing in hte web - a few hours looking for. I`am ...
0
votes
1answer
79 views

Getting information from PFX file

Is there a utility to get information from PFX files like for example to get the private key? How is a PFX structured?
0
votes
2answers
86 views

How can I load certificates with unicode CN using CryptoAPI?

I am trying to load certificate from the system store. I am using the function CertFindCertificateInStore from CryptoAPI: std::string certName; CERT_RDN_ATTR subjCN; subjCN.pszObjId = ...
0
votes
1answer
197 views

Public Key (Assembly a like) extraction from pfx file

I have a problem with extraction of public key from PFX file. First thing which i have used is X509Certificate2. However public key received in this way is encrypted, and i want to have this key to be ...

1 2