Note that there are some explanatory texts on larger screens.

plurals
  1. POHow do I add authorizations to code sign an app from new keychain without any human interaction
    primarykey
    data
    text
    <p>I'm trying to automate the process of building iphone apps with a particular certificate. So imagine if different users uploaded their cert into the system and it was immediately available to code sign against. I want to do this without any interaction. I also don't want to clutter up the system or logon keychain with different user certificates. To this end I have:</p> <ul> <li>turned off the requirement in XCODE to require code signing for a a build.</li> <li>developed a ruby script to build an application via the xcodebuild command line tool</li> <li>created a script to automatically create a new keychain for a user of my system</li> <li>written a script to code sign a built iphone app. </li> </ul> <p>Everything works, but I need to manually hit enter when the codesign program tries to exercise the sign permission. My keychains are all unlocked. Oddly enough it works if I make the keychain the default keychain, but that isn't scalable ie I could only have one build process going at any given time. </p> <p>When I manually click always allow for that process, I get an entry in my keychain dump that looks like this:</p> <pre><code>entry 1: authorizations (6): decrypt derive export_clear export_wrapped mac sign don't-require-password description: privateKey applications (2): 0: /usr/bin/codesign (OK) </code></pre> <p>So I'm thinking that I need to use the authorize command in security to pre-autorize codesign for those permissions. The security man page is pretty poor. I can't seem to get it to work using commands like this:</p> <p>security -v authorize -uew sign | /usr/bin/codesign [code sign vars pointing to app and a specific keychain]</p> <p>Does anyone have any ideas?</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload