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

Creating a ClickOnce certificate from an issuer authority certificate

I am trying to create a certificate from my issuer authority certificate that I purchased so that I can use it in a ClickOnce application. I have a .pfx file that I know the password to. How do I create a certificate from this file that I can…
test
  • 2,589
  • 2
  • 24
  • 52
0
votes
1 answer

how to password protect the digitally signed pdf using iTextSharp?

I m creating and signing pdf using c#,itextsharp.Now i m using this code for password protection and digital sign.First i am protecting with password.Than i am signing. the transmitted pdf is not asking password while opening? Can someone tellme why…
Giri
  • 931
  • 11
  • 31
  • 51
0
votes
2 answers

Digital signature with itextsharp

Can someone explain the following code.. What will that return statement do. public byte[] sign(string text) { string password = "1234"; X509Certificate2 cert = new X509Certificate2("c:\\certificate.pfx", password); …
Giri
  • 931
  • 11
  • 31
  • 51
0
votes
2 answers

Bouncy Castle C# - Password Protect key

I can decrypt a password protected PKCS8 DER key with the following code: MemoryStream ms = new MemoryStream(privateKey); AsymmetricKeyParameter keyparams = Org.BouncyCastle.Security.PrivateKeyFactory.DecryptKey(password.ToCharArray(),…
user1543495
  • 15
  • 2
  • 6
0
votes
1 answer

Java keystore from pfx certificate

Context I need to put a Java application server (http port 8080, https 8181) behind IIS 7.5 (http port 80, https 443) on Windows Server 2008. Steps I have used IIS ARR module for enabling Proxy in order to route some requests to the Java application…
perissf
  • 15,979
  • 14
  • 80
  • 117
0
votes
2 answers

Delay sign with clickonce

I have a ClickOnce application that relies on delay signed (with .pfx) assemblies. I currently rely on the Publish target of my project to create my ClickOnce deployment and would like to keep it that way if possible (avoid mage). My problem is that…
Benoit Dion
  • 163
  • 1
  • 2
  • 9
0
votes
1 answer

What differences between certificate private key that retrieved from .pfx file and personal My Store?

I wanna know What differences between certificate private key that retrieved from .pfx file and personal My Store. I retrieved certificate private key with these two types by using java language. retrieved from personal My Store : Private Key :…
Sharifah
  • 361
  • 2
  • 17
  • 30
-1
votes
1 answer

Loading .pfx to gmail

I am trying to test e-mail encryption using between my standard e-mail service and Gmail. I can’t figure out how to load .pfx file in Gmail. Regards, Janusz
Janusz Dalecki
  • 197
  • 1
  • 10
-1
votes
1 answer

.NET: What needs to be done to let the GAC recognize an assembly as 'new' and accept a new 'strong name'

I have a not yet released assembly where the netAssemblyKeyfile.pfx got lost and I want to develop on a computer where the GAC already was conditioned to only use the strong name of the old keyfile. How can I modify the existing project file or…
thomiel
  • 2,467
  • 22
  • 37
-1
votes
1 answer

How to sign an application and a site with SSL

I have a question regarding signing with SSL. I need to sign an application (.exe) written in Delphi. At the same time I also want to sign an Internet Portal with which the application communicate. My question is: does signing services generally…
AttilioDM
  • 81
  • 6
-1
votes
1 answer

Config Nexus-IQ to use .pfx Certificate

Ahoi guys! The setup. Nexus-IQ running on a Windows server, as a service, using the "clm-jsw". I was trying to enable secured connection to the server, but i have pfx file, and i would like to know how i can use that in the config.yml so that server…
Ilya Gurenko
  • 545
  • 1
  • 5
  • 16
-1
votes
1 answer

Getting no such file or directory

I need to open, read, and get the path of .pfx file. The file is inside my android studio project folder, MyApp/certificate/mycertificate.pfx. public void openFile(){ CkCert cert = new CkCert(); File file = new…
Tito
  • 49
  • 1
  • 8
-1
votes
1 answer

adding SSL automation task to pipeline

I've created a power shell script that sets the SSL based on a provided PFX file. Using the VSTS pipeline, what is the recommended way of passing PFX file to the script? Including PFX file in a solution getting the PFX file path on a target…
armache
  • 596
  • 5
  • 22
-1
votes
1 answer

How, having IIS pfx with L1K, creat CSR for L1M and have cert returned compatible with Tomcat?

I have IIS server with pfx containing L1K cert. I need to request a new L1M cert for it, AND will need to also be able to import the returning cert to a java keystore as the URL in question will move from IIS to Apache Tomact. Help!
user1698161
  • 42
  • 1
  • 8
-1
votes
2 answers

tomcat startup error post ssl certificate setup

I am getting the below error when starting the server 30-Jan-2018 07:04:54.821 INFO [main] org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler ["http-nio-8443"] **30-Jan-2018 07:04:55.157 SEVERE [main]…
Peyush Goel
  • 383
  • 2
  • 3
  • 13
1 2 3
40
41