Skip to content

how to check .dmg signature #83

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/security/verify-installers.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@ Our Windows installers are signed using a code signing certificate. You can veri
On macOS, you can verify the code signature of the Cryptomator app using the built-in `codesign` utility. This verification confirms the app's authenticity and integrity:

1. Open Terminal (found in Applications > Utilities).
2. Run the following command to check the signature:
2. Run either of the following commands to check the signature of the corresponding file:
```
codesign -dv ~/Downloads/Cryptomator-*.dmg
codesign -dv /Applications/Cryptomator.app
```
3. Verify that the output includes:
Expand Down