0
votes
0answers
20 views
Change pfx password in .NET
Hi, 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 newPs …
0
votes
1answer
41 views
winhttpcertcfg giving access to iiS user in Windows 7
I need to give access to the IIS user to a pfx certificate. The website is running under the App Pool under some user AppPoolUser. IIS automatically has the user name "IIS APPPOOL …
0
votes
0answers
25 views
Converting .PFX to .PEM programmatically ?
I need to programmatically extract certificates and their private keys from a MS certificate store, and get them to the .PEM format somehow. I don't want to use OpenSSL at the com …
2
votes
4answers
5k 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 l …
1
vote
4answers
386 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 enterin …
2
votes
4answers
250 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 g …
0
votes
0answers
47 views
Importing certificate from .pfx file in Windows Server 2008
I need to automate installation of SSL certificates using scripts. I have been able to import server certificate from .pfx file using:
certutil -user –p 123 -importpfx "C:\Users\t …
1
vote
1answer
86 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 …
0
votes
1answer
256 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 …
0
votes
1answer
166 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 …
0
votes
1answer
612 views
Extract certificates from PFX file _without_ using OpenSSL
I found an answer that uses OpenSSL, but I'm on Windows, and I don't have it easily to hand. Is there a way (e.g. using CERTUTIL or VBScript) to see the certificates in a .PFX file …
1
vote
1answer
117 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 …
0
votes
1answer
209 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 = CertCreateC …
2
votes
1answer
140 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 S …
1
vote
3answers
707 views
Is it possible to convert an SSL certificate from a .key file to a .pfx?
Hi,
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 …
