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 alternatives available.
FYI, the cerf file is created by using “keytool” and then doing an export to a cert file.
This article describes two ways of creating a .pfx file from a .cer file:
Programmaticaly you could do so in C# by writing the byte array directly to a file:
And generally (if you’re using IE 8) you might want to have a look at this answer on SO:
Hope that helps you.