mirror of https://github.com/CrimsonTome/tldr.git
13 lines
348 B
Markdown
13 lines
348 B
Markdown
# codesign
|
|
|
|
> Create and manipulate code signatures for macOS.
|
|
> More information: <https://www.unix.com/man-page/osx/1/codesign/>.
|
|
|
|
- Sign an application with a certificate:
|
|
|
|
`codesign --sign "{{My Company Name}}" {{path/to/application_file.app}}`
|
|
|
|
- Verify the certificate of an application:
|
|
|
|
`codesign --verify {{path/to/application_file.app}}`
|