Questions tagged [p12]

146 questions
1
vote
1 answer

OpenSsl: how to create PFX/P12 without including CA files?

I have a trusted certificate chain, a certificate issued by this chain and private key file for this certificate. I want to create a P12 / PFX for this, so I can put it as client certificate in the windows store: OpenSsl Pkcs12 -export -nokeys …
Harald Coppoolse
  • 28,834
  • 7
  • 67
  • 116
1
vote
0 answers

Add server-side certificate on Windows

I imported a p12 certificate file to system on Windows 7, on which a Tomcat webapp is running. I try to retrieve certificate with following code: private KSPrivateKeyEntry getKSPrivateKeyEntry(final String alias, ProtectionParameter…
plaidshirt
  • 5,189
  • 19
  • 91
  • 181
1
vote
1 answer

Is it possible to store .PEM file on windows server store & read it programatically

Generally we keep .P12 (certificate) file on the windows server store. Certificates can be stored by using this link. It seems only following extensions are allowed to be saved. .P12 - Personal Information Exchange .PFX - Personal Information…
SharpCoder
  • 18,279
  • 43
  • 153
  • 249
1
vote
1 answer

openssl .p12 cert only has one of the concatenated .pem cert info

I have two .p12 certs that I converted into .pem files using this command: openssl pkcs12 -in cert1.p12 -out cert1.pem -nodes openssl pkcs12 -in cert2.p12 -out cert2.pem -nodes Then I catenated the two .pem files into one .pem file: cat cert1.pem…
userRD
  • 11
  • 2
1
vote
0 answers

How Chrome preview encodes/decodes actual response of raw (application/x-pkcs12) type?

I'm having an api that returns .p12 file as application/x-pkcs12. In JS and Network Panel's response tab I can see my response like…
1
vote
1 answer

Where and how to install provisioning profile in Visual Studio for Xamarin.Forms?

I have implemented push notification using UrbanAirship. I am not getting notification. I have google for it and it says I need to install certificates. I got 2 certificates. 1- appidentifier.p12 2- appidentifierIOS.mobileprovision I am using…
1
vote
0 answers

c# webrequest POST with p12 405 error

Tearing my hair out. We have a p12 file, which can't be exported to .pfx, so that solution on stackoverflow did'nt help. Using SOAPUI, I get a response, but from my C# (2014) client, written as a console application, I only get the 405 error. code…
Neal Rogers
  • 498
  • 9
  • 27
1
vote
2 answers

Set imported certificate p12 to always be trusted in Mac OS X

I have generated a certificate in p12 format in MacOS X and imported it into default keychain using: sudo security import ./keystore.p12 -P password But that certificate is non trusted, all fields setting in value no value specified: How may I set…
Alykoff Gali
  • 1,121
  • 17
  • 32
1
vote
1 answer

Create distribution profile from .p12 certificate iOS

I have received a .p12 certificate from my Client. I have installed it to my KeyChain. I need to create a distribution provisioning using this and sign my app ipa with it. How can I create the distribution profile using this information? Any help…
user3034944
  • 1,541
  • 2
  • 17
  • 35
1
vote
1 answer

Swift iOS - Authenticate to website with p12

first of all: I am quite new to Swift, so please have mercy if my question is stupid as hell. What I want to do: Create an app, that just displays a website. I did this with a basic WKWebView with Swift 3. import UIKit import WebKit class…
Chaya93
  • 21
  • 1
1
vote
1 answer

Copy a p12 certificate from OSX which will used by an app when calling web API

I've read this question on stackoverflow so I knew I can't read an installed certification in configuration profile from an app. Here's what I've tried: Copy the certificate (.p12) which is self-signed from my macbook through AirDrop. Then iPhone…
Griiid
  • 21
  • 3
1
vote
0 answers

Does a p12 file has important information?

For a phonegap project I had to send p12 file and a provisioning profile file to a dev. The guy did not work well and canceled the project. I don't know exactly what is in these files, should I change my pass or everything is encrypted ? thank you
bernardo
  • 381
  • 3
  • 9
0
votes
0 answers

Convert letsencrypt pem to p12

I can't convert LetsEncrypt .pem files to .p12 openssl pkcs12 -export -out cert.p12 -inkey /path/privkey.pem -in /path/cert.pem -passout pass: -nokeys On https://www.sslshopper.com/ssl-converter.html it is converted OK, with privkey.pem and…
Vitalicus
  • 1,188
  • 13
  • 15
0
votes
1 answer

How to prevent "Warning: failure in signing Android apk" error when using adt to compile an Adobe AIR app

I'm using the latest AIRSDK 50.2.2.5 from Harman to compile a captive APK and I get the message "Warning: failure in signing Android apk". My .p12 file was created from Animate back in 2012, but it always worked with older versions of Adobe AIR.…
OMA
  • 3,442
  • 2
  • 32
  • 39
0
votes
0 answers

error in fromDer from forge.asn1 with certificate .p12 .pfx

I have a problem. I'm developing a program in which I can read .p12 and .pfx files. My code is the following: const pathSignFile = await uploadFile(signFile, ['p12', 'pfx'], '/signCerts'); const signBufferBinary = fs.readFileSync(pathSignFile, {…