Codesign returned errSecInternalComponent in High Sierra

与世无争的帅哥 提交于 2019-12-17 16:57:18

问题


I tried to codesign using:

/usr/bin/codesign -f -s $IDENTITY --keychain $KEYCHAIN --entitlements $ENTITLEMENTS Payload/Test.app

But I get an errSecInternalComponent error.


回答1:


I too got the same error from code signing. It seems to be mostly bcoz of keychain access. It is not just enough that keychain has to be in unlocked state as suggested in most of the post.

I did the following steps to resolve this.

  1. Let the Login (or wherever your code signing identity is present) Keychain be in Locked state. To do it open Keychain Access, right click the login keychain and select 'Lock Keychain "login"'.

  2. Execute the command line.

  3. Code Sign will prompt for keychain password (snapshot attached below). Enter the password.
  4. After this, command will succeed.

It seems command line needs the password to be given when it is prompted. Otherwise, the error keeps on coming even when the keychain is in unlocked state.

Hope it helps.



来源:https://stackoverflow.com/questions/51649727/codesign-returned-errsecinternalcomponent-in-high-sierra

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!