Questions tagged [p12]
146 questions
0
votes
2 answers
Add a .password file to .p12 file with ubuntu
Using the ./bin/tls-toolkit.sh standalone command, I generate a three files which are :
CN=sys_admin_OU=NIFI.p12
nifi-cert.pem
CN=sys_admin_OU=NIFI.password
I am following this tutorial :
…

amira khalifa
- 107
- 3
- 11
0
votes
1 answer
How to fetch SSL cert subject, issuer, start date and expire date from the trust.p12 cert file
Environment - IBM websphere application server 8.5.5
File - trust.p12 and key.p12 (in trust.p12 , 20 certificates are
added)
by using openssl commnd, i can able to see complete certificate
details like below
MAC Iteration 2048 MAC verified OK…

Victory
- 121
- 1
- 3
- 18
0
votes
1 answer
Save SSL certificate in JMeter
I have a p12 file, which is needed to execute tests.
I added following lines to system.properties file.
javax.net.ssl.keyStoreType=pkcs12
javax.net.ssl.keyStore=C:\certs\certificate.p12
javax.net.ssl.keyStorePassword=certificate_password
It was…

plaidshirt
- 5,189
- 19
- 91
- 181
0
votes
2 answers
Use p12 file permanently in JMeter
P12 certificate file is needed to execute testcase. I set it in JMeter in Options -> SSL Manager. It asks for password when testcase is executed, but it is working just until JMeter is restarted. After that I have to provide it again in SSL Manager.

plaidshirt
- 5,189
- 19
- 91
- 181
0
votes
0 answers
TypeError: Cannot read property 'tagClass' of undefined in Node js
var forge = require('node-forge');
//some code here
var keyFile = fs.readFileSync('./test.p12', 'binary');
var p12Asn1 = forge.asn1.fromDer(keyFile);
var p12 = forge.pkcs12.pkcs12FromAsn1(p12Asn1,false, employeeID);
var bags = p12.getBags({bagType:…

ghari
- 9
- 2
0
votes
1 answer
PhoneGap Build Certificate doesn't match profile error
I am attempting to complete my app build in Phone Gap to create an IPA file for App Store submission. However, I am constantly running into:
"Error:certificate doesn't match profile the default keychain doesn't have an identity matching"
...and I am…

abtecas
- 279
- 2
- 4
- 13
0
votes
1 answer
p12 error building Xamarin iOS on Visual studio online
I am using visual studio 2017 (15.6.5) and have a .NET standard based xamarin solution which contains an android and iOS project.
I am using visual studio online CI to (try) to build the iOS application. All works fine in development. I am…

David Synott
- 31
- 4
0
votes
1 answer
Error signing an MSI package, what's going on?
I just obtained a code signing certificate from DigiCert. I've got the Microsoft Authenticode one. I was surprised they didn't ask me for a private key (I think it was generated in the browser). After exporting it from Firefox to a P12-file, I tried…

Pablo Fernandez
- 279,434
- 135
- 377
- 622
0
votes
1 answer
How to convert this terminal syntax to PHP syntax for OpenSSL
I wish to covert a .p12 file to .pem file. In Mac terminal, this command works,
openssl pkcs12 -in cert.p12 -out cert.pem -nodes -clcerts
I am using laravel 5.5
I tries using exec() but it outputs an empty file.
$p12path =…

naz
- 159
- 1
- 6
0
votes
0 answers
SecKey (PCKS1) to Base64 (PCKS8) from p12
I have looked at other answers on StackOverflow and I didn't find what I was looking for (IOS11). I have a SecKey (privateKey) that when I print:
SecKeyRef algorithm id: 1, key type: RSAPrivateKey, version: 4, block size: 2048 bits, addr:…

Fernando Salom
- 1
- 3
0
votes
2 answers
Phonegap iOS getting this error : the password for the associated certificate is incorrect
Hi I'm trying to build an ios app from phonegap builder and I'm getting this error : the password for the associated certificate is incorrect
I'm user a p12 basic password with no special characters
What could be the problem ?

Alpha
- 455
- 1
- 5
- 16
0
votes
1 answer
Download p12 file from firebase
can I ask ...how to download p12 certificate from firebase ?
because I want to implement push notification on my own notification manager with that certificate

alpiopio
- 243
- 1
- 2
- 10
0
votes
2 answers
Update new APNS certificate to GCM
Generated new certificates in Apple Developer Centre.
It's weird i couldn't upload that certificates to GCM and also i couldn't see UPDATE button developer website.
It shows error {{ controller.errorMessage }}
How do I do that? Here's a screenshot…

Stalin Pusparaj
- 741
- 9
- 11
0
votes
1 answer
Push-notifications stop working, Private key missing
I'm in big trouble, I've one application already live in Apple store. Suddenly, My Mac's hard-disk is got crashed, So, I'v replaced it with another hard disk.
When i execute my project from new system (new hard-disk), xCode has created some…

Sonu
- 937
- 1
- 10
- 39
0
votes
1 answer
Get information from p12 certificate file using PHP
My webpage has a login form that requests a p12 file to validate your identity using a certificate.
How can I get the p12 information using PHP code?

J. García
- 67
- 1
- 12