Difference between revisions of "Code Signing"
From Verge3D Wiki
Jump to navigationJump to searchm (→Verification) |
m (→macOS) |
||
Line 20: | Line 20: | ||
=== Verification === | === Verification === | ||
check singing: | |||
codesign -vvv --deep --strict <APP_OR_BINARY> | codesign -vvv --deep --strict <APP_OR_BINARY> | ||
check notarization: | |||
codesign --test-requirement="=notarized" --verify --verbose <APP_OR_BINARY> |
Revision as of 16:34, 26 January 2022
Windows
Verification
signtool verify /pa binary_file.exe
macOS
Search for valid Developer ID Certificate:
security find-identity -v
Sign your binary/app:
codesign -s <ID> -o runtime -v <APP_OR_BINARY>
Notarize you binary/app:
xcrun altool --notarize-app --primary-bundle-id <BUNDLE_ID> --username <EMAIL> --password "@keychain:altool" --file <APP_OR_BINARY>
Verification
check singing:
codesign -vvv --deep --strict <APP_OR_BINARY>
check notarization:
codesign --test-requirement="=notarized" --verify --verbose <APP_OR_BINARY>