Code Signing

From Verge3D Wiki
Revision as of 15:36, 26 January 2022 by Alexander (talk | contribs) (→‎macOS)
Jump to navigationJump to search

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

codesign --verify --verbose <APP_OR_BINARY>