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

Working with bouncycastle provided by wildfly

I am trying to decrypt some private keys (.pfx X509Certificate) with Bouncy Castle. If I run the code standalone (junit), it works fine, but when I run it on wildfly with arquillian deployed as a war file, I'm facing some…
fdam
  • 820
  • 1
  • 11
  • 25
0
votes
0 answers

Exception while include .p12 file in java

I have .p12 certificate file which needs to be included in every sent to server from my java code. When i run sample code from linux its gives me exception javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX…
Yagnesh Agola
  • 4,556
  • 6
  • 37
  • 50
0
votes
1 answer

Signing Credentials - X509 Certificate with Private Key - SAML2

I know hardly anything about certificates, with regards that there's a CA, public and private key, and I'm learning as I go. I am creating an SSO login using SAML 2, which I have working with the excecption of adding the
Rob Scott
  • 7,921
  • 5
  • 38
  • 63
0
votes
1 answer

Add strongly named keys (pfx) to all users on a server

I am trying to configure a jenkins windows slave msbuild tasks on, but I am having issues with click once projects and its strongly named keys. Depending on which account installs the PFX key, it depends on what the results and errors…
Saan
  • 544
  • 5
  • 19
0
votes
1 answer

Importing .pfx certificate and signing binaries

In our build procedure, we are using .pfx file to sign our generated binaries, while referencing the time stamp server. Is it possible to import/install this into the build machine (Windows Server 8.x) and sign our binaries, instead of manually…
Farrukh Waheed
  • 2,163
  • 2
  • 29
  • 59
0
votes
0 answers

Importing Key file issue while building using BuildMaster

When i try to Build my code in BuildMaster, i am getting the following error. ERROR: C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Microsoft.Common.targets(2482,5): error MSB3326: Cannot import the following key file: . The key file may be…
0
votes
2 answers

How to apply migration signature to an APK created by Flash Builder

I developed an android application using Flash Builder. Version 1.0 has been created with an old certificate (.PFX file). That certificate is expired. So I create new Version 1.1 with a new certificate. But when I try to install the new version,…
0
votes
1 answer

C# (SQL Server Integration Services) - Secured Web Service - How to post signed SOAP/Get response. Testproject SOAPUI works

I'm a not good at Web services and C#. I looked at other threads but I can't seem to find a solution. I think because I'm using SSIS I can't use WSE or WCF approaches. I'm looking for a solution to exchange data between an application server and a…
0
votes
2 answers

Save a PFX Certificate on Internal Storage

I´m trying to save a .PFX certificate in to the Internar Storage of my application. When I get de .pfx from asset or raw the InputStream obtained is good, and works fine. But if I store this InputStream on the Internar Storage (or on…
0
votes
1 answer

How do i create the key and crt file from given code signing file cer only?

I have code signing certificate, from them i got a X.cer file only. when i need to sign my .exe i need a PFX file for that i need two files A.key and B.crt Q. How do i make from X.cer file, A.key and B.crt? so that i can start Step 1? Step 1: $…
user285594
0
votes
1 answer

Converted PFX SSL cert throwing SSLHandshakeException?

I was given a PFX "wildcard" SSL certificate (I believe its a VeriSign cert) for *.ourdomain.example.org. I then used this answer to help me convert the PFX into a JKS keystore entry and add it to a JKS keystore. When I run keytool -list -keystore…
DirtyMikeAndTheBoys
  • 1,077
  • 3
  • 15
  • 29
0
votes
1 answer

Use NANT to sign a .pfx

I am trying to sign a .pfx file using NANT in my TeamCity build. the following just show the help information for sn.exe. What am I missing
thechrisberry
  • 177
  • 1
  • 18
0
votes
1 answer

Reading a PFX file PrivateKey and Certificate Chain in java - Getting a Null

Here's my code as below: public static void main(String[] args) throws IOException, GeneralSecurityException, DocumentException { String path = ""; char[] pass = "".toCharArray(); BouncyCastleProvider provider = new…
sethu
  • 8,181
  • 7
  • 39
  • 65
0
votes
1 answer

WIX: Install Certificate but distribute pfx file separately from msi

I want to create a MSI that installs a certificate in the local machine store on several computers. As the certificate will be different on each machine I wanted to exclude the pfx from the MSI so that I can provide the same MSI everywhere and only…
0
votes
1 answer

Consume java web service from .NET Web Service and/or asp.net web application

I'm trying to consume a Java Web Service from third party, so i dont have any control over it. I have a pfx file which is password protected, and i installed it in my development box. This is the code i'm using: var proxy = new …
E-Bat
  • 4,792
  • 1
  • 33
  • 58