在Linux系統中,codesign工具用于對代碼進行簽名和驗證。以下是使用codesign工具驗證代碼的步驟:
codesign --verify --verbose=2 /path/to/your/signed/file
請將/path/to/your/signed/file
替換為你想要驗證的已簽名文件的路徑。該命令將輸出詳細的驗證信息,如果文件已被成功簽名,你將看到類似于以下的輸出:
Executable=/path/to/your/signed/file
Identifier="com.example.yourapp"
Format=bundle with Mach-O thin (x86_64)
CodeDirectory v=2020......
Signature size=4028
Authority=Developer ID Application: John Doe (ABCDEFG123)
Authority=Apple Code Signing Authority
Authority=Apple Root CA
...
如果文件未被簽名或簽名無效,你將看到錯誤信息,例如:
/path/to/your/signed/file: invalid signature size
請注意,codesign工具需要安裝并配置正確的證書和權限才能驗證代碼簽名。如果你遇到任何問題,請確保你已經正確安裝了codesign工具,并且已經配置了有效的簽名證書。