show entire certificate chain for a local certificate file

For local certificates you can see the subject and direct issuer using: openssl x509 -noout -subject -issuer -in test.crt subject= /C=US/ST=Utah/L=SLC/O=My Organization/CN=my.server.com issuer= /C=BE/O=GlobalSign nv-sa/CN=GlobalSign Organization Validation CA – SHA256 – G2 But that doesn’t indicate if the certificate includes any intermediate certificates or the full chain of trust. The verify command you listed will … Read more

Code Sign error: The identity ‘iPhone Developer: x Xxxxx’ doesn’t match any identity in any profile

Right Click the Project (eg. x.xcodeproject) and select Show Package Content Open project.pbxproj with TextEdit Search for all “CODE_SIGN_IDENTITY[sdk=iphoneos*]” and set it to “CODE_SIGN_IDENTITY[sdk=iphonesos*]” = “iPhone Developer”; Search for “PROVISIONING_PROFILE[sdk=iphoneos*]” and set it to “PROVISIONING_PROFILE[sdk=iphoneos*]” = “”; Save the file Reopen the Xcode project or select “Read from Disk” resulting from Xcode the prompt. This … Read more