This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Tutorial https://www.objc.io/issues/17-security/inside-code-signing/ | |
//Print which signing certificates are on computer | |
security find-identity -v -p codesigning | |
//Print what was used to codesign an app | |
codesign -vv -d Example.app | |
//Print what entitlements are enabled for app | |
codesign -d --entitlements - Example.app |