Skip to content

Commit 8a3cdfe

Browse files
committed
Merge branch 'develop'
2 parents e36444d + 775aab8 commit 8a3cdfe

File tree

1 file changed

+23
-2
lines changed

1 file changed

+23
-2
lines changed

docs/security/verify-installers.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,26 @@ Our Windows installers are signed using a code signing certificate. You can veri
3737
3. Click on Details.
3838
4. Click on View Certificates.
3939
5. Click on Details. The serial number of our certificate should be:
40-
- For releases since July 14, 2022: `d77e4f8b938f56ae265cd08e9193490c`
41-
- For releases from July 3, 2019 to July 3, 2022: `63c45bff1a148d60ed2994d3a2639034`
40+
- For releases since July 14, 2022: `d77e4f8b938f56ae265cd08e9193490c`
41+
- For releases from July 3, 2019 to July 3, 2022: `63c45bff1a148d60ed2994d3a2639034`
42+
43+
## macOS (app) {#macos}
44+
45+
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:
46+
47+
1. Open Terminal (found in Applications > Utilities).
48+
2. Run the following command to check the signature:
49+
```
50+
codesign -dv /Applications/Cryptomator.app
51+
```
52+
3. Verify that the output includes:
53+
- `TeamIdentifier=YZQJQUHA3L`
54+
- The signature should be valid with no errors
55+
56+
If the app is properly signed, you should see output similar to:
57+
```
58+
Executable=/Applications/Cryptomator.app/Contents/MacOS/Cryptomator
59+
Identifier=org.cryptomator
60+
...
61+
TeamIdentifier=YZQJQUHA3L
62+
```

0 commit comments

Comments
 (0)