1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/osx/codesign.md

12 lines
250 B
Markdown
Raw Normal View History

2017-10-06 14:48:32 -07:00
# codesign
2017-10-07 23:56:25 -07:00
> Create and manipulate code signatures for macOS.
2017-10-06 14:48:32 -07:00
2017-10-07 23:56:25 -07:00
- Sign for an application with your certificate:
2017-10-06 14:48:32 -07:00
2017-10-14 21:01:32 -07:00
`codesign -s {{"My Company Name"}} {{/path/to/App.app}}`
2017-10-06 14:48:32 -07:00
- Verify a certificate to an application:
2017-10-14 21:01:32 -07:00
`codesign -v {{/path/to/App.app}}`