bbrown
|
Registered User
|
Lead developer at the largest domain registrar in the world.
|
|
23h |
awarded | ● Self-Learner |
|
Nov 10 |
comment |
How would you keep secret data secret in an iPhone application? What you are saying would be entirely accurate were it not for the fact that the notification sent between Apple and the iPhone is over a secure connection. So it is encrypted. Look in the Push Notification Programming Guide... |
|
Oct 14 |
awarded | ● Popular Question |
|
Sep 23 |
awarded | ● Yearling |
|
Aug 29 |
answered | Can i use red/green text colors to provide additional information? |
|
Aug 27 |
awarded | ● Nice Answer |
|
Aug 3 |
answered | Why is Visual SourceSafe viewed so poorly? |
|
Jul 31 |
comment |
What programming practice that you once liked have you since changed your mind about? That's a fair tradeoff. |
|
Jul 30 |
comment |
What’s the best way to save User data (email+password) into your app? Just be aware that the Keychain uses Triple-DES, in case that matters. |
|
Jul 30 |
comment |
How secure are the app settings on the iPhone? Just be aware that the Keychain is encrypted using Triple-DES. |
|
Jul 30 |
answered | What are different padding modes and cipher modes in IPhone for AES encryption? |
|
Jul 27 |
comment |
Clang Error on “Potential null dereference.” If I could've marked two answers, I would have. Thanks for explaining the context in which it might happen! |
|
Jul 27 |
comment |
Clang Error on “Potential null dereference.” Ugh, I can't believe I missed that. Thanks! |
|
Jul 27 |
asked | Clang Error on “Potential null dereference.” |
|
Jul 23 |
awarded | ● Nice Answer |
|
Jul 21 |
comment |
CLANG giving errors complaining about defective header file UILocalizedIndexedCollation.h This fixed everything for me. Thanks! |
|
Jul 20 |
comment |
Having trouble decrypting in C# something encrypted on iPhone using RSA I'm giving you the answer credit because you urged a fresh start. |
|
Jul 20 |
revised |
Having trouble decrypting in C# something encrypted on iPhone using RSA Updated with results. |
|
Jul 20 |
comment |
Having trouble decrypting in C# something encrypted on iPhone using RSA As Jon Grant suggested, I will inspect the public key bits themselves but the fact is that the iPhone is reading a X509 certificate bundled with the app (not generated on the phone itself) and I find it incredible that the phone would read the public key in differently. I'll settle this by checking the bytes, but I'm going to be awfully surprised if that's the case. |
|
Jul 17 |
comment |
Having trouble decrypting in C# something encrypted on iPhone using RSA but I'm pretty sure that I shouldn't be surprised that the same public key might generate different output for the same input on different passes. That is the purpose of the PKCS#1 padding, something an Apple engineer confirmed: lists.apple.com/archives/apple-cdsa/… |
|
Jul 17 |
comment |
Having trouble decrypting in C# something encrypted on iPhone using RSA Thanks for your response! I can find nowhere in the .NET or Cocoa libraries where you can set an IV for RSA encryption or decryption. I thought IV applied only to symmetric algorithms. I too would not presume to think that either 1 or 2 are possible, but I also cannot fathom that an X509 certificate's public key would be interpreted differently on the two platforms. But I took the cert from the phone and plopped it into the server and it was successful there so I don't know what to think. I will look into the public key details within each platform to make sure that they're the same, <cont> |
|
Jul 17 |
comment |
Having trouble decrypting in C# something encrypted on iPhone using RSA Time for a bounty! |
|
Jul 17 |
comment |
Having trouble decrypting in C# something encrypted on iPhone using RSA That was my bad. In the code sample above, there's a private instance variable called "clientCert" that is of type X509Certificate2. I failed to include it in the listing. Sorry about that... |
|
Jul 17 |
comment |
Having trouble decrypting in C# something encrypted on iPhone using RSA Sadly, OpenSSL is not available on the iPhone so it doesn't help me. But thanks for trying! |
|
Jul 16 |
revised |
Having trouble decrypting in C# something encrypted on iPhone using RSA Fixed HTML list syntax error. |
|
Jul 16 |
comment |
Having trouble decrypting in C# something encrypted on iPhone using RSA With all due respect, I think I should use the respective frameworks' security features instead of rolling my own. First, their implementation is battle tested and has passed security reviews that mine will not have. Second, I'm a C# and Objective-C programmer with admittedly-limited cryptographic skills. Third, I think I'm really close on this one and that the problem is soluble. Finally, the number of questions on SO (and elsewhere) about this situation suggests that there are many that have grappled unsuccessfully and so it would be nice to have a resolution available. |
|
Jul 16 |
revised |
Having trouble decrypting in C# something encrypted on iPhone using RSA Update to "new theory." |
|
Jul 16 |
revised |
Having trouble decrypting in C# something encrypted on iPhone using RSA Added new theory to the end of the question. |
|
Jul 15 |
revised |
Having trouble decrypting in C# something encrypted on iPhone using RSA Updated to reflect endianness findings on the different platforms. |
|
Jul 15 |
comment |
Having trouble decrypting in C# something encrypted on iPhone using RSA Turns out that the endianness between the platforms is a relic of the PowerPC days. Mac OS X, being based on the x86 architecture, is little-endian--same as Windows. The iPhone, on the ARM architecture, is also little-endian as near as I can determine from searches. |
|
Jul 15 |
comment |
Having trouble decrypting in C# something encrypted on iPhone using RSA That's great to hear and thanks for the response! Forgive my ignorance, but how exactly would I make use of these conversion methods? I assume they're for on the iPhone so where would I plug it into my method? |
|
Jul 15 |
revised |
Having trouble decrypting in C# something encrypted on iPhone using RSA Added link to relevant CryptoExercise class file. |
|
Jul 15 |
revised |
Having trouble decrypting in C# something encrypted on iPhone using RSA Added Array.Reverse results to the problem. |
|
Jul 15 |
revised |
Having trouble decrypting in C# something encrypted on iPhone using RSA Removed general exception handler from C# method to eliminate the vertical scrollbar. |
|
Jul 15 |
asked | Having trouble decrypting in C# something encrypted on iPhone using RSA |
|
Jul 14 |
comment |
How can I make sure my iphone app is the one talking to my server? How are you handling all of the RSA-related stuff? I've had a devil of a time working with the Security.framework. |
|
Jul 14 |
comment |
Adding RSA keys to the iPhone keychain How are you storing these keys? In a certificate or P12 package? |
|
Jul 13 |
comment |
Best practice to detect iPhone app only access for web services? Exactly. The value of the data will indicate how much protection you'll need. |
|
Jul 13 |
comment |
Best practice to detect iPhone app only access for web services? If push notifications aren't your thing, then the only other course of action that I've come across that raises the bar sufficiently is a key exchange. Look at the CryptoExercise sample app to find out how to generate a random symmetric key on the iPhone and use a public key to encrypt it and send it to another iPhone. It's not perfect, but used in conjunction with other countermeasures and you've got some hope of protecting your assets. |
|
Jul 13 |
answered | Best practice to detect iPhone app only access for web services? |
|
Jul 13 |
comment |
Best practice to detect iPhone app only access for web services? There's no "un-md5" possible as it's a one-way hashing algorithm. The best they could do (on this front) is hash a string and look for a collision (using so-called "rainbow tables"). But the randomness plus the secret key makes a "rainbow table" attack prohibitive. |
|
Jul 11 |
accepted | Refreshing the UITableView from UITableViewCell |
|
Jul 7 |
answered | Where / How can I get inspiration to continue coding after doing so for long hours? |
|
Jul 7 |
answered | What programming practice that you once liked have you since changed your mind about? |
|
Jul 6 |
answered | Objective-C “message sent to deallocated instance 0x5633b0” |
|
Jul 2 |
answered | How to refresh UITableViewCell? |
|
Jul 2 |
comment |
Refreshing the UITableView from UITableViewCell setNeedsLayout is 2.0+: tuvix.apple.com/iphone/library/… |
|
Jul 2 |
answered | Refreshing the UITableView from UITableViewCell |
|
Jul 1 |
comment |
Unfamiliar C syntax in Objective-C context Dang, I can only mark one as the answer. Jason Coco covered the "easy trick" part but you really helped on the "unfamiliar syntax" issue. Thank you very much! |
|
Jul 1 |
comment |
Unfamiliar C syntax in Objective-C context That's what I ended up doing once the completely obvious issue of const was apparent. |
