Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
532 views
in Technique[技术] by (71.8m points)

ios - Codesign returned errSecInternalComponent in High Sierra

I tried to codesign using:

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

But I get an errSecInternalComponent error.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.

Code Sign prompting for keychain password


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...