PKCS#12 is a file format to store and exchange private keys and certificates.
-2
votes
0answers
23 views
Installing pfx (pkcs12) file programmatically using foxpro [closed]
I need to install pfx (pkcs12) file using visual foxpro programmatically without using any third-party tools.
For example, there is a tool named certutil.exe that can be used to install these ...
0
votes
0answers
39 views
How to extract private key from pfx file using openssl?
I was looking for this private key to add ssl certificate in Softlayer's "Add Certificate" wizard and to use it further with Local Load Balancer.
I googled and tried following openssl command:
...
0
votes
2answers
59 views
openssl: Generate a pkcs12 with 2 certificates
I need to build a PKCS12 file (.p12) including 2 certificats, one auto-signed CA and another one which was signed by this CA.
I was trying to build it with OpenSSL but i get nothing.
Thank you
0
votes
1answer
102 views
How to get private key from browser keystore?
I read certificates from keystore browser, there is some problem with getting private key, but public key get perfect. Below is code:
KeyStore keystore1 = KeyStore.getInstance("Windows-MY");
...
0
votes
0answers
40 views
Need help converting P12 certificate into JKS
I need some help converting my .P12 certificate file into a JKS keystore. I've followed the standard commands using Java's keytool utility. However, when I try and use the resulting JKS file to access ...
1
vote
1answer
157 views
Unable to import .p12 certificate to cacerts
While importing .p12 to cacerts I'm facing the following issue. First line says alias already exists and then when I try to overwrite it says alias not found. Please help me tackle this issue.
...
1
vote
1answer
44 views
Prevent private key exposure using custom openssl engine
Is it possible to have an engine generate a keypair, have the application 'use' the private key (e.g. to sign) WITHOUT actually exposing the key ? E.g. openssl would return some kind of reference but ...
-1
votes
1answer
27 views
What are PKCS#12 vulnerabilities?
I'm asking this under the assumption that every security protocol has a vulnerability.
Background: I'll be using PKCS#12 to send over a certificate and matching private key to iPads for them to ...
0
votes
0answers
49 views
Can a pkcs12 file contain multiple certificate chains?
We are able to store one certificate chain in the pkcs12 file. We want to store two certificate chains in one pkcs12 file. Is this possible ? If so, can you explain me how ?
Thanks.
0
votes
0answers
35 views
Pub/Priv from Certificate for ECIEC Bouncy Castle
I've been trying to implement the test class for ECIEC in the Java BouncyCastle API for days from a PKCS#12 file. The problem is that the test class builds the keys from individual parameters while ...
3
votes
1answer
335 views
KeyStore not applying / enforcing private key password for PKCS12 file in Android with BouncyCastle
I am finding that when I create a password-protected PKCS12 file that also contains a password-protected private key and its associated public key / certificate, I am able to decrypt the private key ...
1
vote
2answers
120 views
How to create PKCS12 in Objective C
I know there is SecPKCS12Import API to import(parse) PKCS12.
How to create PKCS12 from SecIdentityRef + SecCertificateRef?
I am looking for a way to use native API (Secure framework) rather than ...
1
vote
1answer
226 views
SOAP - PKIX path building failed
I'm building a server that has to call two webservices. Webservices have the same CA certificate (PKCS12).
the first one receives request by GET, the other one by SOAP call.
follow a part of code ...
4
votes
2answers
400 views
How can I read the content of a .pfx file in Java?
I have file.pfx file and also have a private key. How can I read the certificate in file.pfx in Java?
I have used this code:
import java.security.*;
import java.security.cert.Certificate;
import ...
0
votes
0answers
356 views
Getting OpenVPN Connect to work
I have set up an OpenVPN server on my Synology DS212j. I would like to get my Android device to connect to it, using the official OpenVPN Connect app. The OpenVPN server package on the Synology ...
1
vote
1answer
244 views
PKCS12 Client Certificate in C# with BouncyCastle
I need to use a certificate client .pkcs12 for a windows phone application.
I can't use X509Certificate class because PKCS12 is not allowed. So I download the BouncyCastle class and make this
try
{
...
0
votes
1answer
280 views
How to list the certificates stored in a PKCS12 keystore with keytool?
I wanted to list the certificates stored in a PKCS12 keystore.
The keystore has the extension .pfx
1
vote
1answer
804 views
How to create a certificate into a PKCS12 keystore with keytool?
I wanted to create a certificate into a PKCS12 keystore format with keytool program.
The keystore has extension .pfx.
How do I achieve this?
-1
votes
1answer
127 views
How do I create a PKCS12 self-signed SSL certificate [closed]
How can I create this file?
If this functionality isn't built into Windows somewhere, I would prefer to work with C#.
0
votes
0answers
212 views
encrypted smime issue
I am trying to use the following code from BouncyCastle documentation. I have an issue when I run the following code. I am getting the following error. Please let me know what could be an issue. Thank ...
0
votes
1answer
206 views
Install Private Key of a pkcs12 into Mono Cert Store on Linux Programmatically
On .NET in a Windows Environment, if a .pfx/.p12 contains a Private Key, it could be programmatically installed into the Certificate Store in the following way (where rawData is a byte array ...
0
votes
0answers
174 views
Create PKCS12 certificate in JAVA
so here's what I'm trying to do:
I connect to my SSL server
It sends me two certificates, and one of them is self-signed
At this stage, there are no problems, I've:
X509Certificate[] myTwoCerts;
...
2
votes
1answer
136 views
Handling Appliciability Statement 2 (AS2) Requests
My company has decided to roll their own EDI service to handle a partner that wants to communicate over AS2 - Applicability Statement 2. To my surprise, there's not a whole lot of resources or ...
3
votes
1answer
395 views
Access PFX File ECC PrivateKey For Symmetric Key Generation in Java
I'm writing a program (in Java using the Bouncy Castle API) that encrypts files with AES-256/GCM with a key generated by ONE EC key pair. I have the symmetric encryption portion working perfectly but ...
1
vote
1answer
258 views
How to instantiate X509Certificate from a P12 file in Blackberry
I have a valid P12 file. I need to instantiate an X509certificate object, so that I can use it as a client side certificate.
I realize that there is already a similar question answered here, How to ...
0
votes
0answers
41 views
SSL pkcs with biometrics
I want to write a small client program in JAVA that sends over HTTPS messages, such that the certificate is in a biometric card.
I have a "precise biometrics" card reader and a card from "Safenet".
...
1
vote
1answer
323 views
Use BouncyCastle PKCS12SafeBagBuilder or PKCS12BagAttributeCarrier to change PKCS12 safe bag attributes when writing KeyStore to file in Android?
I am trying to write a private key and associated signed certificate to a PKCS12 (.p12) file on an Android device using BouncyCastle 1.47 (bckpix-jdk15on-147.jar and bcprov-jdk15on-147.jar) and would ...
1
vote
1answer
249 views
Bad certificate error with SSL
I have a webstart application where I want to do client authentication while connecting to the server. I have created pkcs12 certificate which I install using certmgr.exe and it works fine.
I want to ...
0
votes
1answer
321 views
java.security.NoSuchProviderException: No provider configured for S/MIME
I've been trying to solve my problem but I couldn't u_u
Well, let's see. I need to send an email (which I can do) but the last requirement was that I needed to attach a certificate (SSL) and that was ...
1
vote
1answer
1k views
Extract certificate chain information from signed X509 certificate (CSR response) in Android / BouncyCastle
Am I able to extract certificate chain information from a CA-signed X509 client certificate using Android or BouncyCastle libs?
I have an Android client that receives a CA-signed X509 certificate ...
2
votes
1answer
455 views
How can I use a PKCS12 ssl certificate with newer LWP?
I'm having difficulty getting a PKCS12 certificate to work using new LWP (6.x). Basically, this code works under perl5.8.8 and old Crypt::SSLeay (version 0.57) and LWP (version 5.826):
local ...
0
votes
1answer
269 views
Export mykeystore.pfx to X.509 Certificate using openssl
I have generated mykeystore.pfx using command line keytool. Can anyone tell me how to generate X.509 certificate (PEM) using openssl please?
1
vote
2answers
828 views
How to use keystore in PKCS#12 format in Java? [closed]
Can anyone explain how to implement encryption and decryption using the PKCS#12 in Java?
0
votes
1answer
209 views
CryptoAPI: accessing PKCS12 stored certificate
I'm exploring a case where the stored certificate must be extracted for using with OpenSSL's (C++ application). It is imported to Local Computer\Personal store, and had contained a password-protected ...
1
vote
1answer
512 views
Jenkins + SVN + PKCS12 + HTTPS
There is a problem with the usage of SVN + PKCS12 + HTTPS. When I want to add an SVN repository to a Jenkins Template, I get an error.
It seems that the SVN Client does not support this way of ...
0
votes
1answer
2k views
iOS Push Notification - JavaPNS - keystore.p12 file security
I am trying to use Apple's Push Notifications. I am using this tutorial here:
http://www.ibm.com/developerworks/java/library/mo-ios-push/#ibm-pcon
I am on the part where I am trying to create the ...
0
votes
0answers
143 views
Apache as client with pkcs12 certificate where Server does client authentication
Can we make Apache act as client with p12 certificate which can connect to a Server which does client authentication?
Instead of this setup:
Jboss (keystore with p12 certificate) -> Server(client ...
3
votes
1answer
1k views
What is the Google API password for the OAuth PKCS p12 private key?
The Google API setup provides a way to create a project with a service account.
I download the private key as a PKCS #12 p12 file.
Where do I find the password for this file?
0
votes
0answers
173 views
Store/Retrieve Data through .cer or .p12 or .pfx certificates?
May be its a nope question. Is it possible to store/retrieve my custom data like user name, password and server details in digital certificates like .cer or .p12 or .pfx ???
Thanks in Advance!!!
1
vote
1answer
340 views
Creating a .bar from .apk for Playbook using existing .p12 file
Long story short a previous employee created our last version of the Android for Playbook .bar file. When he left, he left me the .p12 file and the password but not the barsigner.csk and barsigner.db ...
0
votes
0answers
417 views
Use P12 cert with HTTPWebRequest
This is Visual Studio 2010/.Net 4.0/VB.Net
I am trying to use a P12 cert with a HTTPS POST. I imported a certificate file into the Windows store and a P12 was created (not by me, so I'm not sure of ...
0
votes
1answer
2k views
Openssl convert .PEM containing only RSA Private Key to .PKCS12
Currently I have a .PEM file containing only a private key. I need to convert this file into a .PKCS12 file. Currently I'm trying to use openssl to achieve this and I'm running into some problems.
...
0
votes
0answers
233 views
decrypt pfx OR p12 using iaik_full_signed.jar in Java fails
I am writing a code to decrypt a .pfx or .p12 certificate using above mentioned library.
It simply takes password into charArray. But it can not decrypt it. It generates the following exception.
...
2
votes
0answers
655 views
Java Webservices SOAP with client auth and p12 certificate
I need to call a webservice from a Java stand-alone application. The webservice requires client-auth access and it has a https:// url.
The user of the application should provide a p12 certificate and ...
1
vote
2answers
55 views
Error on Geoloqi website when loading p12 certificate
I am attempting to configure Apple push notifications for my Geoloqi app on the Geoloqi website by uploading p12 development and live certificates. Unfortunately, when I click 'update' the website ...
0
votes
1answer
143 views
In ruby, how do I get the subject, issuer etc. after creating an OpenSSL PKCS12 object
If I use
c = OpenSSL::PKCS12.new data
is there something like c.subject or s.expiry to get these attributes?
0
votes
0answers
571 views
How to generate a pkcs12 certificate ( Certificate + Private Key ) using java code
I've gone through PKCS12 java API's to create a .pkcs12 certificate. But could not figure out any way to create one.
Help on how to use the SafeBag() or CertBag() or KeyBag() to create the pkcs12 file ...
1
vote
1answer
68 views
How to send a certificate, with specified Provider, and to receive it on another side?
How to send a certificate, which was created from keystore, with specified Provider, and to receive it on another side? I send it like a string in encoded by Base64 format, and cannot to convert it to ...
2
votes
1answer
757 views
https handshake with keystores in Python
I have an web server set up that denies connections without a valid .p12 certificate. I need to access a REST API that is running on the server in a Python script, but I can't find anything about how ...
1
vote
1answer
3k views
Convert .p12 file to .pem using Terminal app in Mac “No such file or directory” error?
I have export the "Apple Development IOS Push Service" certificate from Keychain Access and save the "apns-dev-cert.p12" in my desktop. I want to enable Apple Push Notification I have followed these ...