Reputation: 111
How to view the certificate for a particular app installed in our Mac OS.? for example: /Applications/Utilities/Terminal.app I want to view the certificate for this app.
I do not want to list all the certificates in KeyChain Access and search for the terminal app. Is there any command line of UI way to view the certificate of an installed app.?
Thanks
NK
Upvotes: 11
Views: 8951
Reputation: 1225
Here's You can check how app is signed and see Cert Authority:
codesign -d -vvv /Applications/Utilities/Terminal.app
Upvotes: 17