Renew Apple developer certificates with OpenSSL

I like to reuse the same private keys when generating a signing request to renew my Apple developer certificates. Unfortunately you can’t do this with Keychain Access, as it won’t save the signing request file after you step through the wizard. OpenSSL is your friend. Open Keychain Access, RMB on the key your wish to use and click Export “[Key Name]”. Save it as a .p12 file with a strong password....

Feb 2, 2011 · 1 min

Xcode Tip: Generate comments in your assembler output

To make it easier to find the assembly generated when you ‘Show Assembly Code’, embed comments using: asm("# your comment")

Mar 7, 2009 · 1 min