Tag
certificate
2 notes.
Find the expiry of a Certificate that was used to sign an .ipa App file
Extract the ipa file: $ unzip -q App.ipa Extract Certificates: $ codesign -d --extract-certificates Payload/*.app $ openssl x509 -inform DER -in codesign0 -out codesign0.pem $ openssl x509 -inform…
How to Convert a Apple Certificate .p12 file to a PEM File
To convert PKCS#p12 file to a PEM file, use: 14917992716aa930b20e8e4_000000 Now you will have both the certificate and key in the cert.pem file without a password. If you…