Skip to content

Instantly share code, notes, and snippets.

@digiter
digiter / ios_code_signing_examples.sh
Last active September 20, 2023 15:41 — forked from chance909/iOS Codesigning command line commands
iOS code signing commands
//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